[Qgis-user] PyQGIS Book available

2014-01-06 Thread Gary Sherman

The PyQGIS Programmer's Guide is now available at http://locatepress.com/ppg.

Feedback and comments are welcome.


-gary

-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-
Gary Sherman
Chair, QGIS Project Steering Committee
-Open Source GIS Books:
 *http://locatepress.com
-Alaska Novel:
 *http://alaskana.co
-Geospatial Consulting & Hosting:
 *http://geoapt.com
"We work virtually everywhere"
-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-





___
Qgis-user mailing list
Qgis-user@lists.osgeo.org
http://lists.osgeo.org/mailman/listinfo/qgis-user


[Qgis-user] New QGIS PSC Members

2013-08-25 Thread Gary Sherman
Nominations for the QGIS PSC closed at 00:00 UTC on August 25, 2013 [1].

With only one nominee for each role, the PSC unanimously moved to accept each 
without election.

The QGIS PSC welcomes new members Anita Graser, Richard Duivenvoorde, and 
Jürgen Fischer.

The PSC is now composed of:

* Chair - Gary Sherman
* Community Advisor - Otto Dassau   
* Design Advisor - Anita Graser
* Financial and Marketing Advisor - Paolo Cavallini
* Infrastructure Manager - Richard Duivenvoorde 
* Release Manager - Jürgen Fischer
* Technical Advisor - Marco Hugentobler  
* Testing/QA Manager - Tim Sutton   


The new PSC members begin their terms immediately.

[1]  
http://hub.qgis.org/projects/quantum-gis/wiki/Call_for_Nominations_August_2013

=gary

-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-
Gary Sherman
Chair, QGIS Project Steering Committee
-Open Source GIS Books:
 *http://locatepress.com
-Alaska Novel:
 *http://alaskana.co
-Geospatial Consulting & Hosting:
 *http://geoapt.com
"We work virtually everywhere"
-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-





___
Qgis-user mailing list
Qgis-user@lists.osgeo.org
http://lists.osgeo.org/mailman/listinfo/qgis-user


[Qgis-user] Call for Nominations to the QGIS PSC Now Open

2013-08-03 Thread Gary Sherman
Nominations to fill three vacant seats on the QGIS PSC (two new, one existing) 
are open from August 3, 2013 until August 24, 2013.

Please see 
http://hub.qgis.org/wiki/quantum-gis/Call_for_Nominations_August_2013 for 
information and instructions on how to nominate someone.

Please feel free to spread the word via other channels.

-gary

CHAIR, QGIS PSC

___
Qgis-user mailing list
Qgis-user@lists.osgeo.org
http://lists.osgeo.org/mailman/listinfo/qgis-user


Re: [Qgis-user] How to create a local (LAN) plugin repository

2013-04-17 Thread Gary Sherman
It's simple to set up a repo on your network. First create an XML file that
describes your plugin(s) and the download location. Here is an example:




  
Run Python scripts 
0.71
1.8

scriptrunner.zip
    Gary Sherman
http://geoapt.com/qgis_plugins/scriptrunner.zip

gsherman
2013-03-16
None
True
  


Put this on your web server somewhere, then make sure you put the plugin
package in the download_url location.

Last step is to add your repo to the plugin installer, using the URL to
your plugins.xml.

Please consider contributing any plugins you create that may have broader
interest to the the community.

Thanks,
-gary


On Wed, Apr 17, 2013 at 6:30 AM, Alexandre Neto wrote:

> I'm developing a toolbar with several python tools for one of our
> projects. They are very data especific tools, and therefore not interesting
> to realease as plugins in the official repository. Yet, I would like that
> my working colleagues could install (and update) it using the Python plugin
> manager.
>
> Is it possible to create a local repository (on our local network)? how?
>
> Thanks,
>
> Alexandre Neto
>
> ___
> Qgis-user mailing list
> Qgis-user@lists.osgeo.org
> http://lists.osgeo.org/mailman/listinfo/qgis-user
>
>


-- 
-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-
Gary Sherman
Chair, QGIS Project Steering Committee
-Desktop GIS Book:
 *http://desktopgisbook.com
-Alaska Novel:
 *http://alaskana.co
-Geospatial Consulting & Hosting:
 *http://geoapt.com
"We work virtually everywhere"
-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-
___
Qgis-user mailing list
Qgis-user@lists.osgeo.org
http://lists.osgeo.org/mailman/listinfo/qgis-user


Re: [Qgis-user] Problem loading several provider libs from external script

2013-02-25 Thread Gary Sherman
t;> QtCore.QLibrary(u'/usr/lib/qgis/plugins/libogrprovider.so').load()
> False
> >>>
> QtCore.QLibrary(u'/usr/lib/qgis/plugins/libspatialiteprovider.so').load()
> False
> >>>
>
> ..well, I think you see the pattern. Outside of those three
> ('delimitedtext', 'gpx' and 'gdal'), QLibrary doesn't seem able to
> load any of the other provider libraries.
>
> Now my first guess when QLibrary can't load a library would be that
> something is wrong with that library. Except of course that when these
> same commands are issued inside the embedded console under Qgis, these
> same libs load fine:
>
> >>> from PyQt4 import QtCore
> >>>
> QtCore.QLibrary(u'/usr/lib/qgis/plugins/libdelimitedtextprovider.so').load()
> True
> >>> QtCore.QLibrary(u'/usr/lib/qgis/plugins/libgdalprovider.so').load()
> True
> >>> QtCore.QLibrary(u'/usr/lib/qgis/plugins/libgpxprovider.so').load()
> True
> >>> QtCore.QLibrary(u'/usr/lib/qgis/plugins/libogrprovider.so').load()
> True
> >>>
> QtCore.QLibrary(u'/usr/lib/qgis/plugins/libspatialiteprovider.so').load()
> True
> >>>
>
>
> I've tried making my sys.path identical between the embedded and
> external python sessions. No effect.
>
> I didn't see any obvious systematic problems with the libraries that
> didn't load (I focussed on libmemoryprovider, because that one is
> relatively simple), and neither in the ldd nor readelf outputs did
> anything stand out as an obvious red flag. (I say 'obvious red flag'
> because I lack the expertise to properly understand even half the
> things that come out of readelf, and can only look for a limited
> number of 'telltale signs')
>
> So.. what am I missing? Is there some other library that Qgis preloads
> that makes the loading of the other dynamically linked providers work?
> And how can I get that to also happen from a regular python script not
> inside the embedded python console?
>
>
> Kind regards,
> Nils
> ___
> Qgis-user mailing list
> Qgis-user@lists.osgeo.org
> http://lists.osgeo.org/mailman/listinfo/qgis-user
>



-- 
-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-
Gary Sherman
Chair, QGIS Project Steering Committee
-Desktop GIS Book:
 *http://desktopgisbook.com
-Alaska Novel:
 *http://alaskana.co
-Geospatial Consulting & Hosting:
 *http://geoapt.com
"We work virtually everywhere"
-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-
___
Qgis-user mailing list
Qgis-user@lists.osgeo.org
http://lists.osgeo.org/mailman/listinfo/qgis-user


Re: [Qgis-user] help

2012-12-21 Thread Gary Sherman
To subscribe or unsubscribe via the World Wide Web, visit
http://lists.osgeo.org/mailman/listinfo/qgis-user

On Thu, Dec 20, 2012 at 11:48 PM, Els Dens wrote:

>
> To subscribe or unsubscribe via the World Wide Web, visit
> http://lists.osgeo.org/mailman/listinfo/qgis-user




-- 
-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-
Gary Sherman
Chair, QGIS Project Steering Committee
-Desktop GIS Book:
 *http://desktopgisbook.com
-Alaska Novel:
 *http://alaskana.co
-Geospatial Consulting & Hosting:
 *http://geoapt.com
"We work virtually everywhere"
-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-
___
Qgis-user mailing list
Qgis-user@lists.osgeo.org
http://lists.osgeo.org/mailman/listinfo/qgis-user


[Qgis-user] New Gold Sponsor for QGIS

2012-10-04 Thread Gary Sherman
QGIS Gains a Gold Sponsor

The Quantum GIS (QGIS) project is happy to announce that the Asia Air Survey 
Co., Ltd (AAS), a Japanese international consulting company, has become a Gold 
Sponsor. AAS has committed to providing 9,000 EUR (~ $11,000 US) each of three 
years, beginning in November 2012. 

The AAS sponsorship is yet another indication that QGIS is a mature and stable 
project which continues to provide innovative open source GIS software. 

The QGIS Project Steering Committee (PSC) wishes to thank AAS for their 
continuing commitment. These funds will help further the development of QGIS, 
in part by allowing face to face developer meetings and code sprints (also 
known as hackfests).

The QGIS project has always relied on volunteers and community involvement. If 
your organization would like to become a sponsor, please contact the Finances 
and Marketing Manager: cavallini[at]faunalia.it. For more information on 
sponsorship levels, please see the QGIS Sponsorship page 
(http://www.qgis.org/en/sponsorship.html).

___
Qgis-user mailing list
Qgis-user@lists.osgeo.org
http://lists.osgeo.org/mailman/listinfo/qgis-user


Re: [Qgis-user] Python plugins for 1.8

2012-06-28 Thread Gary Sherman

On Jun 28, 2012, at 14:26, Pirmin Kalberer  wrote:

> 
> I was surprised as well that the 3rd party button has been removed. Can you 
> point me to the discussion thread leading to this decision?

http://lists.osgeo.org/pipermail/qgis-psc/2012-May/001117.html

http://lists.osgeo.org/pipermail/qgis-psc/2012-May/001119.html

-Gary
GeoApt LLC
Chair, Quantum GIS PSC
___
Qgis-user mailing list
Qgis-user@lists.osgeo.org
http://lists.osgeo.org/mailman/listinfo/qgis-user


Re: [Qgis-user] qgis 1.8 when official release

2012-06-27 Thread Gary Sherman

On Jun 27, 2012, at 6:19 AM, Jake Maier wrote:

> Hi
> I postpone installing the nightly 1.8 version since about a month because I
> hear from different sources that the official release is right around the
> corner.
> It still seems not to be ready for release. Hearing all the good stuff about
> 1.8, I'm contemplating to install the nightly release but am afraid that it
> now really is right around the corner and will be officially release
> whenever I finished the download.
> Does anyone have more exact release date  information?
> Thanks
> Jake
> 
1.8 is released. See http://hub.qgis.org/projects/quantum-gis/wiki/Download to 
get yours.

> 

-gary

=-=-=-=-=-=-=-=-=-=-=-=-=-=-=
Gary Sherman
GeoApt LLC
  http://geoapt.com
Founder, Quantum GIS
Chair, QGIS PSC
Book:
  http://geospatialdesktop.com
"We work virtually everywhere"
=-=-=-=-=-=-=-=-=-=-=-=-=-=-=









___
Qgis-user mailing list
Qgis-user@lists.osgeo.org
http://lists.osgeo.org/mailman/listinfo/qgis-user


Re: [Qgis-user] Closure of forum

2012-04-04 Thread Gary Sherman

On Apr 4, 2012, at 11:10 AM, Nick Hopton wrote:

> Of course it's in the nature of things that we'll never know how many
> newcomers and less-experienced people will look at Stack Exchange or at this
> list, take fright and silently slip away. And slip away from QGIS too. I
> believe that by providing a friendly and informal place of first resort for
> newcomers the forum did an important job.   

Would running our own OSQA (http://www.osqa.net/) be better since it wouldn't 
be as rigid as StackExchange?

It would:

* allow for better organization of questions/answers
* be more informal and QGIS community friendly
* easier to administer?

-gary

=-=-=-=-=-=-=-=-=-=-=-=-=-=-=
Gary Sherman
GeoApt LLC
  http://geoapt.com
Founder, Quantum GIS
Chair, QGIS PSC
Book:
  http://geospatialdesktop.com
"We work virtually everywhere"
=-=-=-=-=-=-=-=-=-=-=-=-=-=-=









___
Qgis-user mailing list
Qgis-user@lists.osgeo.org
http://lists.osgeo.org/mailman/listinfo/qgis-user


Re: [Qgis-user] Closure of forum

2012-04-03 Thread Gary Sherman
I received this from a forum user:

"I have seen that this forum is closing and I'm wondering where conversations 
unrelated to questions and answers will go to now? i.e. experiences in using 
QGIS, directions for development, resources being developed to support QGIS, 
training events, etc. "

Your thoughts are appreciated.

-gary

=-=-=-=-=-=-=-=-=-=-=-=-=-=-=
Gary Sherman
GeoApt LLC
  http://geoapt.com
Founder, Quantum GIS
Chair, QGIS PSC
Book:
  http://geospatialdesktop.com
"We work virtually everywhere"
=-=-=-=-=-=-=-=-=-=-=-=-=-=-=









___
Qgis-user mailing list
Qgis-user@lists.osgeo.org
http://lists.osgeo.org/mailman/listinfo/qgis-user


Re: [Qgis-user] SEXTANTE for QGIS has been released

2012-03-31 Thread Gary Sherman
On Mar 31, 2012, at 9:35 AM, Carlos Grohmann wrote:

> Hi, I couldn't find the sextant plugin in qgis 1.7 on mac os x. is it on 
> http://mapserver.sk/~wonder/qgis/plugins-sandbox.xml? this repo is giving 
> connection errors.
> 
> best
> 
It is in the new plugin repository 
(http://plugins.qgis.org/plugins/plugins.xml). You must have enabled viewing of 
experimental plugins in the Options tab of the plugin installer in order to see 
it.


> Carlos
> 
> -- 
> Prof. Carlos Henrique Grohmann
> Institute of Geosciences - Univ. of São Paulo, Brazil
> - Digital Terrain Analysis | GIS | Remote Sensing - 
> 
> http://carlosgrohmann.com
> 
> Can’t stop the signal.
> Sent with Sparrow
> 
> On Friday, 30 March 2012 at 18:19, Victor Olaya wrote:
> 
>>> One remark / request on concerning GRASS; as the GRASS algorithms are
>>> already available through the GRASS toolbox, the main thing for me would be
>>> to enable the use of GRASS raster and vector layers in all the SAGA (and
>>> other) modules. I assume this will be part of the working version you
>>> mention?
>> 
>> Well, the idea is just the opposite: to use any raster or vector layer
>> in GRASS, directly from QGIS. "Any" in this context means any "normal"
>> file-based layer. What you propose is just the opposite: to use GRASS
>> layers in other apps. This is something I plan to work on later. As I
>> mentioned in the release note, now SEXTANTE handles those "normal"
>> layers, but not others like layers from remote services, from DB
>> connections or "special" layers like GRASS ones. I hope to give
>> support for all that as well, so any layer than can be loaded into
>> QGIS can be passed to an external application transparently, with
>> SEXTANTE doing the necessary work of conversion or whatever is needed.
>> However, I will wait until this first version works fine before
>> starting that.
>> 
>> Regards
>> ___
>> Qgis-user mailing list
>> Qgis-user@lists.osgeo.org
>> http://lists.osgeo.org/mailman/listinfo/qgis-user
> 
> ___
> Qgis-user mailing list
> Qgis-user@lists.osgeo.org
> http://lists.osgeo.org/mailman/listinfo/qgis-user

-gary

=-=-=-=-=-=-=-=-=-=-=-=-=-=-=
Gary Sherman
GeoApt LLC
  http://geoapt.com
Founder, Quantum GIS
Chair, QGIS PSC
Book:
  http://geospatialdesktop.com
"We work virtually everywhere"
=-=-=-=-=-=-=-=-=-=-=-=-=-=-=









___
Qgis-user mailing list
Qgis-user@lists.osgeo.org
http://lists.osgeo.org/mailman/listinfo/qgis-user


Re: [Qgis-user] Closure of forum

2012-03-31 Thread Gary Sherman
On Mar 31, 2012, at 9:10 AM, Nick Hopton wrote:

> The closure is a done deal I suppose but I think it will be harmful to QGIS.
> Forum users are now being pointed to Stack Exchange but many of them will, I
> believe, take one look at Stack Exchange and run a mile. 

The forum would have closed a year ago if I had not kept it running on my 
server. 

I think there is a large gap between the developer and user community with 
regard to support methods.

Some people relied on the forum solely for support. Others think our support 
mechanisms are fragmented and strongly dislike forums. Maybe closing it will 
force some useful discussion. 

-gary

=-=-=-=-=-=-=-=-=-=-=-=-=-=-=
Gary Sherman
GeoApt LLC
  http://geoapt.com
Founder, Quantum GIS
Chair, QGIS PSC
Book:
  http://geospatialdesktop.com
"We work virtually everywhere"
=-=-=-=-=-=-=-=-=-=-=-=-=-=-=









___
Qgis-user mailing list
Qgis-user@lists.osgeo.org
http://lists.osgeo.org/mailman/listinfo/qgis-user


Re: [Qgis-user] Re: Donations -> Knowledge mananagment platform

2012-03-31 Thread Gary Sherman

On Mar 31, 2012, at 6:16 AM, Maxim Dubinin wrote:

> -1
> 
> (signed  up  for  qgis-user  to  send  this email, is it really a good
> way  to  decide  ask  whether  we should close one support media at... another
> media)
> 
> I'm surprised it is ignored what actual users of the forum said [0].

It should be noted that only 12 people of the hundreds that used the forum 
cared enough to vote. This can hardly be viewed as a consensus opinion.

> 
> I'm also surprised how quickly the thread 'how to make forum better' turned
> into 'lets  close it because we don't like it/don't want to spend time on it'.

This issue has been discussed for nearly a year in one form or another.

> 
> I thought such decisions should at least go through PSC voting.

While there was no formal vote, the members of the PSC and community have 
expressed their opinion.

Personally I am neutral on whether the forum lived or died. 

> 
> [0] http://forum.qgis.org/viewtopic.php?f=12&t=9025
> 
> Maxim
> 
>> We could also close the forums and tell everyone to use gis.stackexchange
>> instead. That would reduce maintenance necessary on our side. It would also
>> increase visibility of QGIS in the eyes of ESRI folks if more QGIS
>> questions pop up on stackexchange.
>> 
>> Personally, I would welcome shutting down the forums since it would free
>> me of the repetitive work of deleting dozens of spam threads every day.
> 
> ___
> Qgis-user mailing list
> Qgis-user@lists.osgeo.org
> http://lists.osgeo.org/mailman/listinfo/qgis-user

-gary

=-=-=-=-=-=-=-=-=-=-=-=-=-=-=
Gary Sherman
GeoApt LLC
  http://geoapt.com
Founder, Quantum GIS
Chair, QGIS PSC
Book:
  http://geospatialdesktop.com
"We work virtually everywhere"
=-=-=-=-=-=-=-=-=-=-=-=-=-=-=









___
Qgis-user mailing list
Qgis-user@lists.osgeo.org
http://lists.osgeo.org/mailman/listinfo/qgis-user


Re: [Qgis-user] Donations -> Knowledge mananagment platform

2012-03-28 Thread Gary Sherman

On Mar 28, 2012, at 3:30 AM, Anita Graser wrote:

> I'm also on gis.stackexchange. Their technology solves a lot of the issues 
> classic forums have. You can tag questions and it's easy to spot which 
> question has been answered and what the answer is. So maybe we could have a 
> QGIS stackexchange site and close the forums? OSM has a stackexchange site 
> for example.
> 
> We could also close the forums and tell everyone to use gis.stackexchange 
> instead. That would reduce maintenance necessary on our side. It would also 
> increase visibility of QGIS in the eyes of ESRI folks if more QGIS questions 
> pop up on stackexchange. 
> 
> Personally, I would welcome shutting down the forums since it would free me 
> of the repetitive work of deleting dozens of spam threads every day. 
> 
> Regards,

In the past there has been user outcry regarding shutdown of the forums.

Unless I hear otherwise, I will mark the forums read-only and disable new 
logins. A banner/sticky post will be added directing people to 
gis.stackexchange. We can talk about creating our own site using OSQA [1], but 
I wonder if it is better to redirect people to the "real" stackexchange.

No matter what route we choose, someone will not be happy. 

-gary

=-=-=-=-=-=-=-=-=-=-=-=-=-=-=
Gary Sherman
GeoApt LLC
  http://geoapt.com
Founder, Quantum GIS
Chair, QGIS PSC
Book:
  http://geospatialdesktop.com
"We work virtually everywhere"
=-=-=-=-=-=-=-=-=-=-=-=-=-=-=









___
Qgis-user mailing list
Qgis-user@lists.osgeo.org
http://lists.osgeo.org/mailman/listinfo/qgis-user


Re: [Qgis-user] Donations

2012-03-27 Thread Gary Sherman

On Mar 27, 2012, at 10:25 AM, Bernd Vogelgesang wrote:

> There are more modern and sustainable ways for exchanging knowledge and 
> provide user interaction than this. Just my 2 cents, do not wanna insult 
> anyone with this.)
> 

Such as?

-gary

=-=-=-=-=-=-=-=-=-=-=-=-=-=-=
Gary Sherman
GeoApt LLC
  http://geoapt.com
Founder, Quantum GIS
Chair, QGIS PSC
Book:
  http://geospatialdesktop.com
"We work virtually everywhere"
=-=-=-=-=-=-=-=-=-=-=-=-=-=-=









___
Qgis-user mailing list
Qgis-user@lists.osgeo.org
http://lists.osgeo.org/mailman/listinfo/qgis-user


Re: [Qgis-user] New bronze sponsorship

2012-03-09 Thread Gary Sherman
On Mar 9, 2012, at 9:41 AM, Paolo Cavallini wrote:

> Hi all.
> We now have a new Bronze sponsor:
> 
> Fachlehrer / Mitarbeiter Fachstelle Gebirgswaldpflege ibW Bildungszentrum 
> Wald,
> Switzerland
> 
> yes, I know it's quite a mouthful; for non german-speakers: it's a training 
> center
> for foresters in Switzerland.
> Thanks a lot!
> -- 
> Paolo Cavallini - Faunalia
> www.faunalia.eu
> Full contact details at www.faunalia.eu/pc
> 
Great news. +1

Thanks to them for sponsoring QGIS!

-gary

=-=-=-=-=-=-=-=-=-=-=-=-=-=-=
Gary Sherman
GeoApt LLC
  http://geoapt.com
Founder, Quantum GIS
Chair, QGIS PSC
Book:
  http://geospatialdesktop.com
"We work virtually everywhere"
=-=-=-=-=-=-=-=-=-=-=-=-=-=-=









___
Qgis-user mailing list
Qgis-user@lists.osgeo.org
http://lists.osgeo.org/mailman/listinfo/qgis-user


Re: [Qgis-user] Newbee - Openlayers Plugin Installation

2012-02-13 Thread Gary Sherman
On Feb 13, 2012, at 6:14 AM, Truter, Jan wrote:

> Dear All,
>  
> Can anyone please assist with information that will help me to get Openlayers 
> installed using Python Plugin Installer (QGIS ver 1.7.3). Typing “Openlayers” 
> in the Filterblock simply does not list it. Only 5 plugins shown in list 
> after installation, including OpenStreetMap.
>  

In the plugin installer, click on the Repositories tab, then click on the "Add 
3rd party repositories" button.

-gary

=-=-=-=-=-=-=-=-=-=-=-=-=-=-=
Gary Sherman
GeoApt LLC
  http://geoapt.com
Chair, QGIS PSC
Book:
  http://geospatialdesktop.com
"We work virtually everywhere"
=-=-=-=-=-=-=-=-=-=-=-=-=-=-=








___
Qgis-user mailing list
Qgis-user@lists.osgeo.org
http://lists.osgeo.org/mailman/listinfo/qgis-user


[Qgis-user] Test

2012-02-01 Thread Gary Sherman
Test to user list
-gary

=-=-=-=-=-=-=-=-=-=-=-=-=-=-=
Gary Sherman
GeoApt LLC
  http://geoapt.com
Chair, QGIS PSC
Book:
  http://geospatialdesktop.com
"We work virtually everywhere"
=-=-=-=-=-=-=-=-=-=-=-=-=-=-=








___
Qgis-user mailing list
Qgis-user@lists.osgeo.org
http://lists.osgeo.org/mailman/listinfo/qgis-user


Re: [Qgis-user] Script Runner plugin and sharing scripts

2012-01-30 Thread Gary Sherman

On Jan 30, 2012, at 6:36 AM, gene wrote:

> The new plugin "Script Runner" of Gary Sherman (
> http://spatialgalaxy.net/2012/01/29/script-runner-a-plugin-to-run-python-scripts-in-qgis/
> Script Runner: A Plugin to Run Python Scripts in QGIS ) offers new
> opportunities to share scripts without necessarily creating a plugin. It
> allows me, for example, to use more simply modules like Shapely with QGIS (I
> do not have time to play with PyQt, to create a plugin, but I know how to
> use Shapely and PyQGIS)
> 
> This raises the problem of a future place to share these scripts... 
> 
> 

Exactly. We now need a "script repository" for people to share useful scripts.

-gary

=-=-=-=-=-=-=-=-=-=-=-=-=-=-=
Gary Sherman
GeoApt LLC
  http://geoapt.com
Chair, QGIS PSC
Book:
  http://geospatialdesktop.com
"We work virtually everywhere"
=-=-=-=-=-=-=-=-=-=-=-=-=-=-=








___
Qgis-user mailing list
Qgis-user@lists.osgeo.org
http://lists.osgeo.org/mailman/listinfo/qgis-user


[Qgis-user] FOSS4G North American Conference

2012-01-25 Thread Gary Sherman
Here is information forwarded to me regarding the upcoming FOSS4GNA Conference:

==
Subject: FOSS4G North America Conference coming April 10-12, 2012

On behalf of OSGeo North America, we’d like to invite you to attend the Free
and Open Source Software for Geospatial - North America (FOSS4G-NA)
conference being held from April 10-12, 2012 at the Walter E. Washington
Convention Center in Washington, DC.  This event will serve as a regional
follow-up to last September’s highly successful international FOSS4G 2011
conference in Denver, Colorado, focusing on the North American open source
geospatial community.

The conference will be organized around three tracks:
- open source technology best practices and tips;
- deployment case studies; and
- emerging ideas and trends in open source.

The call for abstracts is open now and can be submitted here:
http://foss4g-na.org/abstract-submission/ .  We have space for about 50
presentations and 20 Ignite sessions, so get your submissions in!  In
addition, Michael Byrne, CIO of the Federal Communications Commission (FCC)
will be delivering a keynote address, with more speakers to be announced
soon.

Paul Ramsey, Conference Chair of the 2007 FOSS4G conference, will be
reprising his role, along with an experienced committee from the North
America chapter of OSGeo to back him.

We have an open call for sponsorship, which can include exhibition space;
for more information please visit http://foss4g-na.org/sponsorship/.  The
event already has strong support from the community, with a growing set of
sponsors that includes OpenGeo, Radiant Blue, AppGeo, and Spatialytics.

For more information, please visit our site at http://foss4g-na.org/.

Space is limited to 300 attendees only, so you should sign up today to
ensure that you can be a part of this exciting event!
 http://foss4g-na.org/registration/


Related Links:
http://foss4g-na.org/  FOSS4G North America 2012 Conference - Washington, DC
http://wiki.osgeo.org/wiki/North_America_Regional OSGeo North America
http://www.osgeo.org/ Open Source Geospatial Foundation
http://2012.foss4g.org FOSS4G 2012 - Beijing, China


-gary

=-=-=-=-=-=-=-=-=-=-=-=-=-=-=
Gary Sherman
GeoApt LLC
  http://geoapt.com
Chair, QGIS PSC
Books:
  http://geospatialdesktop.com
  http://qgisbook.com
"We work virtually everywhere"
=-=-=-=-=-=-=-=-=-=-=-=-=-=-=







___
Qgis-user mailing list
Qgis-user@lists.osgeo.org
http://lists.osgeo.org/mailman/listinfo/qgis-user


Re: [Qgis-user] need to edit csv file properties

2011-11-26 Thread Gary Sherman
On Nov 26, 2011, at 5:58 AM, David wrote:

> Hello again
> I'm still having trouble using a csv file. 
> 
> Having loaded the csv file as a layer, right click properties opens the layer 
> properties box for the csv file and Fields has the full list of columns in my 
> file: so far, so good.   
> 
> However they are all described as string, width 0 and precision 0 when many 
> should be integer or decimal. Is it possible to change them in the 
> properties box?   I looked at the User Manual but don't understand the Edit 
> widget.
> 
> David Asquith
> UK
> ___
> Qgis-user mailing list
> Qgis-user@lists.osgeo.org
> http://lists.osgeo.org/mailman/listinfo/qgis-user

What are you using for a delimiter? Are you fields quoted? Bringing in a comma 
delimited file here results in double and integers being interpreted correctly.

-gary

=-=-=-=-=-=-=-=-=-=-=-=-=-=-=
Gary Sherman
GeoApt LLC
  http://geoapt.com
Chair, QGIS PSC
Books:
  http://desktopgisbook.com
  http://qgisbook.com
"We work virtually everywhere"
=-=-=-=-=-=-=-=-=-=-=-=-=-=-=






___
Qgis-user mailing list
Qgis-user@lists.osgeo.org
http://lists.osgeo.org/mailman/listinfo/qgis-user


Re: [Qgis-user] Not-saving QGIS interface changes between restarts

2011-11-16 Thread Gary Sherman
On Nov 16, 2011, at 4:02 AM, jonathanmou...@warwickshire.gov.uk wrote:

> I'm looking to deploy QGIS into an enviroment with some very non-tech-savy 
> users. One of the things I'd like to do is stop any interface changes they 
> make from being saved between sessions, so that every time they start QGIS, 
> everything is in the same place.
> The sorts of things I'm talking about are closing the layers panel, moving 
> toolbars around, etc.
> 
> Where does QGIS save these changes? And will QGIS work if I make that 
> location/file read-only?

It depends on your operating system:
 Linux it is found in:  ~/.config/QuantumGIS/QGIS.conf
Windows: the registry HKEY_CURRENT_USER\Software\QuantumGIS\QGIS
Mac:  ~/Library/Preferences/org.qgis.QGIS.plist

Setting it to read-only on Linux works. The other platforms may be more 
problematic.

-gary

=-=-=-=-=-=-=-=-=-=-=-=-=-=-=
Gary Sherman
GeoApt LLC
  http://geoapt.com
Chair, QGIS PSC
Books:
  http://desktopgisbook.com
  http://qgisbook.com
=-=-=-=-=-=-=-=-=-=-=-=-=-=-=





___
Qgis-user mailing list
Qgis-user@lists.osgeo.org
http://lists.osgeo.org/mailman/listinfo/qgis-user


Re: [Qgis-user] qgis forum registration problem...

2011-01-17 Thread Gary Sherman

On 1/15/11 4:00 AM, alain wrote:

Hello!

Some weeks ago, I tried to register to Qgis forum
(http://forum.qgis.org/)...
I submit the first form, waiting for the activation mail, but never had
it...

If I try to log on, I've got this message:
" The specified username is currently inactive. If you have problems
activating your account, please contact a board administrator."
I can't find any board administrator mail adress on the forum web pages...

If I try the "I forgot my password" link, I obtain: " Your account has
not been activated yet."

If I try the "Resend activation e-mail", I don't receive any mail...

I tried to register using another login name, but my mail adress is
still the same...

Can't anybody help?

Thanks...



Send me your username and I'll activate the account.

-gary
--
-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-
Gary Sherman
Chair, QGIS Project Steering Committee
-Desktop GIS Book:
*http://desktopgisbook.com
-Geospatial Consulting & Hosting
*http://geoapt.com
"We work virtually everywhere"
-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-
___
Qgis-user mailing list
Qgis-user@lists.osgeo.org
http://lists.osgeo.org/mailman/listinfo/qgis-user


[Qgis-user] Re: [Qgis-developer] Contributing to QGIS using git

2010-12-28 Thread Gary Sherman

On 12/28/10 7:14 AM, strk wrote:

On Mon, Dec 27, 2010 at 08:16:27AM -0900, Gary Sherman wrote:

Hi all,
I have written up a short guide to contributing to QGIS using git and
the source code clone we have created on GitHub. This allows you to work
within your own distributed version control system and easily submit
your bug fixes and enhancements to the project without having to obtain
write permissions to the centralized SVN repository.

See http://spatialgalaxy.net/2010/12/27/contributing-to-qgis-using-git/


Uhm... sounds scary.
As I've been doing git-svn for postgis [1] and geos [2] too I wonder
how do you plan to import changes people submit to other git repo.
Wouldn't all those commits need to be re-written for submission to
SVN ?

I mean, in case you'll ever use submitted changes, the public repositories
used for requesting the pull _from_ would need to be rewritten to be
in sync with git-svn, resulting in a mess. Or am I missing something ?
(I'd love to be missing something )


The GitHub repo is in sync with the QGIS svn repo. We can pull changes
down to my local repo (it is able to pull/push from/to GitHub and also
SVN). So to accept a contribution, I would branch my local copy, pull
the changes, test, and merge back into master. Then use git-svn to
dcommit the changes into the centralized QGIS repo. Change get pushed
back to GitHub.

-gary


[1] https://github.com/strk/postgis
[2] https://github.com/strk/geos

--strk;

   ()   Free GIS&  Flash consultant/developer
   /\   http://strk.keybit.net/services.html



--
-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-
Gary Sherman
Chair, QGIS Project Steering Committee
-Desktop GIS Book:
*http://desktopgisbook.com
-Geospatial Consulting & Hosting
*http://geoapt.com
"We work virtually everywhere"
-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-
___
Qgis-user mailing list
Qgis-user@lists.osgeo.org
http://lists.osgeo.org/mailman/listinfo/qgis-user


[Qgis-user] Contributing to QGIS using git

2010-12-27 Thread Gary Sherman

Hi all,
I have written up a short guide to contributing to QGIS using git and 
the source code clone we have created on GitHub. This allows you to work 
within your own distributed version control system and easily submit 
your bug fixes and enhancements to the project without having to obtain 
write permissions to the centralized SVN repository.


See http://spatialgalaxy.net/2010/12/27/contributing-to-qgis-using-git/

-gary
--
-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-
Gary Sherman
Chair, QGIS Project Steering Committee
-Desktop GIS Book:
*http://desktopgisbook.com
-Geospatial Consulting & Hosting
*http://geoapt.com
"We work virtually everywhere"
-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-
___
Qgis-user mailing list
Qgis-user@lists.osgeo.org
http://lists.osgeo.org/mailman/listinfo/qgis-user


[Qgis-user] Stack Exchange Q&A site proposal: Geographic Information Systems

2010-07-13 Thread Gary Sherman
Hi Qgis community:

I don't know if you have seen this proposal but please take a look and
consider committing to it if you haven't already. I think it will be a
great resource.


I'm supporting a proposal to create a new Q&A website for programmers,
DBAs, Cartographers, Geographers and anyone interested in GIS
professionally.

It's built on the same software as stackoverflow.com, a hugely popular
site where over seven million programmers help each other with difficult
programming problems. On Stack Overflow the audience votes for the best
answer, so the answer you want is usually right at the top, not on page
five.

I'm hoping that a site for programmers, DBAs, Cartographers, Geographers
and anyone interested in GIS professionally would have the same kind of
network effect and turn into an amazing resource.

The proposal process is going on here:

http://area51.stackexchange.com/proposals/1425/geographic-information-systems?referrer=70Hv67UKFvp3hJ0vc5L2Fg2

If you're interested in participating, go to that URL and click on the
green "Commit" button.

Thanks!

-- 
-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-
Gary Sherman
Chair, QGIS Project Steering Committee
-Desktop GIS Book:
*http://desktopgisbook.com
-Geospatial Consutling & Hosting
*http://geoapt.com
"We work virtually everywhere"
-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-
___
Qgis-user mailing list
Qgis-user@lists.osgeo.org
http://lists.osgeo.org/mailman/listinfo/qgis-user


Re: [Qgis-user] community.qgis.net wrong redirection

2010-06-19 Thread Gary Sherman
On Sat, Jun 19, 2010 at 10:23 AM, Jürgen E.  wrote:
> Hi Yves,
>
> On Sat, 19. Jun 2010 at 14:11:05 +0200, Yves Jacolin (free) wrote:
>> I googled QGIS today and find that the url community.qgis.net was redirected 
>> to
>> http://geoapt.com/
>
> I suppose you mean community.qgis.org.  It points to one of Gary's webservers
> without having no virtual host for community and geoapt beeing it's default
> site.
>
> That was probably overlooked when www.qgis.org was redirected to the
> OSGeo-Servers.  Looks like blog.qgis.org and forum.qgis.org are also affected.
>

I don't think community.qgis.org has been used in a long while. I have
redirected it to the main site.


-- gary
-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-
Gary Sherman
Chair, QGIS Project Steering Committee
-Desktop GIS Book:
 *http://desktopgisbook.com
-Geospatial Consulting & Hosting:
 *http://geoapt.com
"We work virtually everywhere"
-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-
___
Qgis-user mailing list
Qgis-user@lists.osgeo.org
http://lists.osgeo.org/mailman/listinfo/qgis-user


Re: [Qgis-user] QGIS Python startup error - Incompatible SIP module

2010-05-08 Thread Gary Sherman
On Sat, May 8, 2010 at 4:16 AM, James Meyer  wrote:
> I recently ran into an error while starting my QGIS application. Based on
> the errors below, I assume this is after I manually updated my SIP libraries
> to version 9.10.
> At startup of QGIS an error is displayed saying that Python cannot be
> started and will be disabled.
> The following detail is added to the error:
>
> RuntimeError: the sip module implements API v7.0 to v7.1 but the
> PyQt4.QtCore module requires API v6.0
>
> This error also prevents me from re-building and installing QGIS from
> source. The same error displays at 93% of insalling:
>
> File “/usr/bin/pyuic4″, line 3, in
> import PyQt4.uic.pyuic
> File “/usr/lib/pymodules/python2.6/PyQt4/uic/pyuic.py”, line 4, in
> from PyQt4 import QtCore
> RuntimeError: the sip module implements API v7.0 to v7.1 but the
> PyQt4.QtCore module requires API v6.0
>
> I’ve tried removing SIP completely and downloading the QGIS dependencies
> from scratch, but the error persists.
>
> Any suggestions on what I should do?
>
> I am running Ubuntu 9.10 32bit
>
> Thanks
>
> James
>
Looks like you may have to rebuild (or upgrade) PyQt to a more recent version.

-gary
-- 
-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-
Gary Sherman
Chair, QGIS Project Steering Committee
-Desktop GIS Book:
 *http://desktopgisbook.com
-Geospatial Consulting & Hosting:
 *http://geoapt.com
"We work virtually everywhere"
-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-
___
Qgis-user mailing list
Qgis-user@lists.osgeo.org
http://lists.osgeo.org/mailman/listinfo/qgis-user


Re: [Qgis-user] error message - retry

2010-05-08 Thread Gary Sherman
On Sat, May 8, 2010 at 6:55 AM, Michiel van Hasselt
 wrote:
> Dear all,
> Very new to this forum. However, I have had Q-GIS v 1.4 (stand alone)
> running on my laptop for about 4 weeks, upgraded from 1.3 without any
> problems. OS = Windows XP
> Today, out of the blue I received the following error message (not sure if
> the attachment will come through).
> "this application has failed to start because the application configuration
> is incorrect"
> any ideas how I can solve this problem? Have tried to re-install, have un
> installed and installed again, and even when installing the older version
> 1.3 I get the same message.
> Thanks,

You may need the Microsoft runtime libraries (although not sure why
since it worked before).

>From the QGIS download page:
"Note: You may need to install the Microsoft C Runtime Libraries too.
If QGIS does not start, get the MSVC libs from here and install them
before trying to run QGIS again."

The link for libs is:
http://www.microsoft.com/downloads/details.aspx?FamilyID=9b2da534-3e03-4391-8a4d-074b9f2bc1bf&displaylang=en

-- gary
-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-
Gary Sherman
Chair, QGIS Project Steering Committee
-Desktop GIS Book:
 *http://desktopgisbook.com
-Geospatial Consulting & Hosting:
 *http://geoapt.com
"We work virtually everywhere"
-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-
___
Qgis-user mailing list
Qgis-user@lists.osgeo.org
http://lists.osgeo.org/mailman/listinfo/qgis-user


Re: [Qgis-user] Qgis + GRASS prefix: Im so anoyed!

2010-05-08 Thread Gary Sherman
On Sat, May 8, 2010 at 6:05 AM, nikos ves  wrote:
> Hi list
>
> Im s annoyed  by this:
>
> Im building grass from source, and I install it to a directory inside
> my /home (to be exact /home//grass7 )
>
>
> What should i put as grass prefix in ccmake when I compiling qgis?
>
> I tried /home//grass7/grass-7.0.svn
> and /home//grass7/grass-7.0/lib
>
> but everytime i get a huge "GRASS NOT FOUND" slap
>
> Anyone who made it work that can shed some light?

Did you try /home//grass7 ?

Or prehaps CMake isn't setup to find grass version 7...

>
>
> Nick Ves
>
>
> ___
> Qgis-user mailing list
> Qgis-user@lists.osgeo.org
> http://lists.osgeo.org/mailman/listinfo/qgis-user
>



-- 
-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-
Gary Sherman
Chair, QGIS Project Steering Committee
-Desktop GIS Book:
 *http://desktopgisbook.com
-Geospatial Consulting & Hosting:
 *http://geoapt.com
"We work virtually everywhere"
-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-
___
Qgis-user mailing list
Qgis-user@lists.osgeo.org
http://lists.osgeo.org/mailman/listinfo/qgis-user


[Qgis-user] Google Summer of Code

2010-04-08 Thread Gary Sherman
Greetings,

The deadline for student applications is April 9 at 1900 UTC (10AM
PDT). If you plan to submit a proposal please do so as soon as
possible---time is short! There are still plenty of opportunities for
QGIS projects/improvements. For ideas, see
http://www.qgis.org/wiki/Google_Summer_of_Code_2010

-- gary
-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-
Gary Sherman
Chair, QGIS Project Steering Committee
-Desktop GIS Book:
 *http://desktopgisbook.com
-Geospatial Consutling & Hosting:
 *http://geoapt.com
"We work virtually everywhere"
-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-
___
Qgis-user mailing list
Qgis-user@lists.osgeo.org
http://lists.osgeo.org/mailman/listinfo/qgis-user


Re: [Qgis-user] gmane.org to post to this list?

2010-03-25 Thread Gary Sherman
On Thu, Mar 25, 2010 at 3:23 PM, NoOp  wrote:
> I've attempted to use gmane.org to post to this list. Unfortunately
> gmane.org still has the old list address:
> http://gmane.org/list-address.php?group=gmane.comp.gis.qgis.user
> [qgis-u...@lists.qgis.org]
> http://dir.gmane.org/gmane.comp.gis.qgis.user
> rather than Qgis-user@lists.osgeo.org in it's system.
>
> Sent a note along to Gary Sherman & gmane.org regarding the problem, but
> still no change & not able to use gmane.org to post.

According to the information page the list address is correct. Go to
http://dir.gmane.org/gmane.comp.gis.qgis.user and click on the
qgis-u...@... link to see...

-gary
>
> I subscribe & am active in many different mailing lists on a daily
> basis. I've found that using gmane.org (nntp) is the only way to keep my
> mail box(s) from becoming saturated with list messages. Can the manager
> of this list please sort this out with gmane.org?
>
> Thanks
>
>
> ___
> Qgis-user mailing list
> Qgis-user@lists.osgeo.org
> http://lists.osgeo.org/mailman/listinfo/qgis-user
>



-- 
-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-
Gary Sherman
Chair, QGIS Project Steering Committee
-Desktop GIS Book:
 *http://desktopgisbook.com
-Spatial Hosting:
 *http://mrcc.com/hosting
"We work virtually everywhere"
-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-
___
Qgis-user mailing list
Qgis-user@lists.osgeo.org
http://lists.osgeo.org/mailman/listinfo/qgis-user


[Qgis-user] Geospatial data browser -- open for development

2010-03-06 Thread Gary Sherman
All,
The GeoApt Geospatial Data Browser (GGDB) is now available for your
viewing enjoyment. Please note GeoApt is under development and not
feature complete. Right now it does provide directory browsing and
previewing of raster and vector layers. You can view limited metadata
for layers and drag and drop onto QGIS or other desktop apps.

There was a lot of interest in such an application expressed on the list
a while back. If you are interested in joining in development or want to
participate in the discussion, I have setup a separate mailing list.

For more information on GeoApt, the mailing list, and to download the
current version, please see: http://mrcc.com/geoapt-browser

-- gary
-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-
Gary Sherman
Chair, QGIS Project Steering Committee
-Desktop GIS Book:
*http://desktopgisbook.com
-Spatial Hosting:
*http://mrcc.com/hosting
"We work virtually everywhere"
-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-
___
Qgis-user mailing list
Qgis-user@lists.osgeo.org
http://lists.osgeo.org/mailman/listinfo/qgis-user


[Qgis-user] Interest announcement for QGIS meeting

2010-02-28 Thread Gary Sherman
[Forgive the cross-posting]

As you may know, the QGIS project has had several developer meetings
thus far, with one coming up in March[1].

The purpose of this email is to gauge interest in a meeting of
developers (Python and C++), users, and all other interested parties
to take place in June or July. In order to facilitate organization and
planning, I would like to hold the meeting in Anchorage, Alaska.

Agenda items for the meeting might include:
 * Presentation of projects using or leveraging QGIS
 * New things you are working on
 * Roadmap discussion for version 1.9/2.0
 * Hacking on core or plugins
 * Training

The meeting would be held for two or three days mid-week.

I realize that Alaska is far away for most/many of you, however unique
opportunities are available to combine the meeting with some excellent
tourist activities.

If you are interested in such a meeting please let me know (privately
or to the list). If sufficient interest is expressed we will look into
finding sponsors and begin working on details for a time and venue.

Thanks,

-gary

[1] http://qgis.org/en/developer-meetings.html

-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-
Gary Sherman
Chair, QGIS Project Steering Committee
-Desktop GIS Book:
 *http://desktopgisbook.com
-Spatial Hosting:
 *http://mrcc.com/hosting
"We work virtually everywhere"
-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-
___
Qgis-user mailing list
Qgis-user@lists.osgeo.org
http://lists.osgeo.org/mailman/listinfo/qgis-user


[Qgis-user] Re: Forum problem

2010-02-23 Thread Gary Sherman
On Tue, Feb 23, 2010 at 9:21 AM, Gary Sherman  wrote:
>
> The qgis forum is experiencing technical difficulties and will be down for
> an unknown period.
> -Gary

The forum is now working---after fixing a bit of database corruption

-gary



-- 
-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-
Gary Sherman
Chair, QGIS Project Steering Committee
-Desktop GIS Book:
 *http://desktopgisbook.com
-Spatial Hosting:
 *http://mrcc.com/hosting
"We work virtually everywhere"
-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-
___
Qgis-user mailing list
Qgis-user@lists.osgeo.org
http://lists.osgeo.org/mailman/listinfo/qgis-user


[Qgis-user] Forum problem

2010-02-23 Thread Gary Sherman


The qgis forum is experiencing technical difficulties and will be down  
for an unknown period.

-Gary
{{Sent from the wandering iPhone}}
___
Qgis-user mailing list
Qgis-user@lists.osgeo.org
http://lists.osgeo.org/mailman/listinfo/qgis-user


Re: [Qgis-user] Qgis BASIC HTTP Authentication for WMS

2010-02-23 Thread Gary Sherman
When you create a WMD connection you can specify the user name and  
password.


-Gary
{{Sent from the wandering iPhone}}

On Feb 23, 2010, at 1:02, Marco Cussino  wrote:


I'm testing Qgis 1.4.0 to connect to WMS services hosted by Geoserver.
In Geoserver i've created only authenticated services, there are no  
public WMS services.



I read on this ML that there is a WMS Basic HTTP Authentication  
patch, is this patch

present in 1.4.0 or is it still in testing?

thanks

Marco


___
Qgis-user mailing list
Qgis-user@lists.osgeo.org
http://lists.osgeo.org/mailman/listinfo/qgis-user

___
Qgis-user mailing list
Qgis-user@lists.osgeo.org
http://lists.osgeo.org/mailman/listinfo/qgis-user


[Qgis-user] Fwd: [OSGeo-Jobs] Official Job Description for QGIS Job in Kosovo

2010-02-19 Thread Gary Sherman
ing the work carried out
GIS for Dragash Municipality on QGIS with appropriate documentation, basic
searches maps produced, within the limits of the raw data made available by
the project.
Submission of a final assignment report that documents all work carried out
including all materials in electronic copy.

*Competencies*
Integrity: Demostrates the values of the United Nations in daily activities
and behaviours. Professionalism: Demonstrates professional competence and
mastery of subject matterConscientious and efficient in meeting commitments,
observing deadlines and achieving results. Respect for Diversity: Works
effectively with people from all backgrounds Communication: Excellent and
effective written and oral skills;, ability to clearly communicate links
between the organizations. Planning and Organizing: Proven ability to plan,
coordinate and monitor own work and that of others. Provide advice and
guidance to others. Ability to work under pressure. Develops clear goals
that are consistent with agreed strategies. Teamwork: Ability to interact,
establish and maintain productive partnerships with counterparts with
sensitivity and respect for diversity.

*Qualifications and requirements*
NOTE: The quality and extent of the person’s qualifications, skills and
experience in the requirements below will determine the grade/level to which
a successful applicant will be appointed

*Education*
Academic degree/degrees in one or more of the following disciplines/fields:
geography, geology, biology, regional planning or any other relevant
discipline.

*Work experience: *
Proven skills with QGIS / GRASS software; Practical experience with GIS
set-up, operations and user training; Knowledge of remote mountain regions
(landscapes, economic issues) is an advantage

*Languages*
English is the working language of UN-HABITAT Kosovo. Good command of spoken
and written English, (Knowledge of Albanian and Serbian will be an
additional assets);

*Other skills*
Fully proficient with computer technology, including relevant software and
applications. Capacity to deliver the services in tight time frames.

*Special considerations*
The candidate should be:
- Familiar with, and committed to the goals of UN-HABITAT
 - Willing to take responsibility, act professionally at all times, and make
sure tasks are fully completed
- Sensitive to gender issues and issues of concern to vulnerable groups
- Flexible and prepared to pursue goals through teamwork
The United Nations shall place no restrictions on the eligibility of men and
women to participate in any capacity and under conditions of equality in its
principal and subsidiary organs. (Charter of the United Nations - Chapter 3,
article 8). The United Nations Secretariat is a non-smoking environment.
 *How to apply *
Applications including cover letter, CV/P11, letter of interest and list of
referees with contact numbers should be submitted by email to:
recruitm...@unhabitat-kosovo.org<http://www.unhabitat-kosovo.org/recruitm...@unhabitat-kosovo.org>

with the description in the email subject field: GIS Specialist/Dragash.
*Deadline for applications: 26 February 2010 *

Please note that applications received after the closing date stated above
will not be considered. Only short-listed candidates will be contacted.

___
Jobs mailing list
j...@lists.osgeo.org
http://lists.osgeo.org/mailman/listinfo/jobs




-- 
-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-
Gary Sherman
Chair, QGIS Project Steering Committee
-Desktop GIS Book:
*http://desktopgisbook.com
-Spatial Hosting:
*http://mrcc.com/hosting
"We work virtually everywhere"
-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-
___
Qgis-user mailing list
Qgis-user@lists.osgeo.org
http://lists.osgeo.org/mailman/listinfo/qgis-user


[Qgis-user] Re: [Qgis-community-team] New QGIS 1.4 brochure

2010-02-10 Thread Gary Sherman
On Wed, Feb 10, 2010 at 1:27 AM, Otto Dassau  wrote:
> Hi,
>
> I would like to announce that Anita Graser updated the QGIS brochure to the
> current version 1.4. She added lots of new images and content. Thanks a
> lot for this contribution.

Great work---thanks Anita! This will come in handy for a conference I
have coming up the end of the month.

>
> http://www.qgis.org/en/documentation/brochures.html
>

-gary

-- 
-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-
Gary Sherman
Chair, QGIS Project Steering Committee
-Desktop GIS Book:
 *http://desktopgisbook.com
-Spatial Hosting:
 *http://mrcc.com/hosting
"We work virtually everywhere"
-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-
___
Qgis-user mailing list
Qgis-user@lists.osgeo.org
http://lists.osgeo.org/mailman/listinfo/qgis-user


[Qgis-user] Sponsorship Opportunity

2009-12-30 Thread Gary Sherman

Greetings,

As you know QGIS has been developed primarily by a wide ranging group  
of volunteers, including developers, translators, web maintainers,  
artists, and documentation writers.


One of the most beneficial events has been the face-to-face developer  
meetings. These events provide a venue in which major issues can be  
sorted out and new features planned and prototyped. The developer  
meetings thus far have been very productive in advancing QGIS.


We are currently planning a developer meeting in Pisa in the spring of  
2010. The sponsorship goal for the event is 10,500 Euro ($15,000 US).  
This will allow us to bring 15 developers together. Please consider  
donating for this worthwhile event.


You can find information on the sponsorship program, its benefits, and  
the developer meeting at http://qgis.org/en/sponsorship.html.


Thank you for supporting QGIS!

-gary

--  
-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-

Gary Sherman
Chair, QGIS Project Steering Committee
-Desktop GIS Book:
*http://desktopgisbook.com
-Spatial Hosting:
*http://mrcc.com/hosting
"We work virtually everywhere"
-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-

___
Qgis-user mailing list
Qgis-user@lists.osgeo.org
http://lists.osgeo.org/mailman/listinfo/qgis-user


Re: [Qgis-user] What is the matter with QGis versus MS Windows?

2009-11-29 Thread Gary Sherman
On Sun, Nov 29, 2009 at 7:45 AM, Mats Elfström  wrote:
> Ok I'll take it all back the minute somebody writes to this list and reports
> a flawless, standalone QGis installation on any Windows system with all
> GRASS and Gdal dependencies working from the start.
>
> Don't you realize that many users never get to choose OS?
> Or needs to cooperate in environments where there is no choice?
>
> And I am really insulted by the accusation that I as a Windows user,
> automatically is regarded as an incompetent user with no care or concern
> about my system. I've worked with computers since 1984 and I have learned to
> take care of most problems. And I have invested lots of time and love and
> money doing that.
> I am using ESRI products. I am using MapInfo products. I am using FME. I am
> using MicroStation. And I am using Windows. I would like to confidently add
> QGis to my toolbox too, but resent being looked down upon. You seem to
> regard Windows as something the dog dragged in, writing 'people fiddling
> around with a Windows build' and so on.
>
> See if you can find it in your heart to indulge with us ordinary people who
> *has* to use Windows but still likes GIS and Open Source. I think the QGis
> user community would grow and profit from that, and open source efforts must
> behave like other software to gain acceptance.
> I will not debate this further.
>
> Regards, Mats.E
>

With regard to Windows support---it is true that QGIS began life on
Linux. But even then there were plans for Windows and the choice of
the underlying toolkit(s) reflects that intention. QGIS has provided a
Windows version since 0.6 (2004).

Supporting Windows is a big job, just as is supporting OS X and
multiple flavors of Linux. All we can do as a developer community is
to rely on user feedback and support to improve QGIS on all platforms.
We also work within the constraints of limited developer resources and
volunteer time.

We want a solid working version on Windows. I think we have made great
strides in that direction based on user reports. Sure there are
issues, just as there are with all platforms.

Given input and support from the user community, I am certain we can
accomplish the tasks before us.

-gary
-- 
-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-
Gary Sherman
Chair, QGIS Project Steering Committee
-Desktop GIS Book:
 *http://desktopgisbook.com
-Spatial Hosting:
 *http://mrcc.com/hosting
"We work virtually everywhere"
-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-
___
Qgis-user mailing list
Qgis-user@lists.osgeo.org
http://lists.osgeo.org/mailman/listinfo/qgis-user


Re: [Qgis-user] qgis as a data catalog browser and viewer

2009-11-23 Thread Gary Sherman
On Sat, Nov 21, 2009 at 3:43 AM, Agustin Lobo  wrote:
> I think this is a good option: not a qgis plugin but a separate application.
> It's not just a matter of geting names and geographic positions, metadata
> makes the catalog a complex tool.
> Looking forward to it (and to see it fulfilling INSPIRE directives, so that
> remote catalogues can be searched and browsed)
> Are planing to include a metadata editor?

Plans are pretty open at the moment. There may be an opportunity to
leverage some existing work...
-gary
>
> Agus
>
> Gary Sherman wrote:
>>
>> On Thu, Nov 19, 2009 at 10:49 PM, Ivan Mincik 
>> wrote:
>>>>
>>>> I've been working on a project that will ultimately provide the things
>>>> you describe. I will be ready
>>>> to unveil it soon and will be looking for PyQGIS devs to help...
>>>>
>>>> -gary
>>>
>>> Hi Gary,
>>> can You give us little bit more info ?
>>>
>>> Thanks,
>>> Ivan
>>
>> The data browser (code named GeoNibble at present) currently has the
>> following features:
>> * Browse directory tree
>> * Preview supported raster and vector layers
>> * Zoom and pan preview images
>> * View metadata for raster and vector layers
>> * Drag and drop support, including drop on QGIS
>>
>> A screenshot can be seen here: http://picasaweb.google.com/shermange/GNDB
>>
>> The browser is written in Python (PyQt) and requires the bindings for
>> QGIS and GDAL/OGR. It is in early stages of development but functions
>> pretty well as a data browser/preview/launcher.
>>
>> -gary
>>
>>
>
>



-- 
-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-
Gary Sherman
Chair, QGIS Project Steering Committee
-Desktop GIS Book:
 *http://desktopgisbook.com
-Spatial Hosting:
 *http://mrcc.com/hosting
"We work virtually everywhere"
-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-
___
Qgis-user mailing list
Qgis-user@lists.osgeo.org
http://lists.osgeo.org/mailman/listinfo/qgis-user


Re: [Qgis-user] qgis as a data catalog browser and viewer

2009-11-20 Thread Gary Sherman
On Thu, Nov 19, 2009 at 10:49 PM, Ivan Mincik  wrote:
>>
>> I've been working on a project that will ultimately provide the things
>> you describe. I will be ready
>> to unveil it soon and will be looking for PyQGIS devs to help...
>>
>> -gary
>
> Hi Gary,
> can You give us little bit more info ?
>
> Thanks,
> Ivan

The data browser (code named GeoNibble at present) currently has the
following features:
* Browse directory tree
* Preview supported raster and vector layers
* Zoom and pan preview images
* View metadata for raster and vector layers
* Drag and drop support, including drop on QGIS

A screenshot can be seen here: http://picasaweb.google.com/shermange/GNDB

The browser is written in Python (PyQt) and requires the bindings for
QGIS and GDAL/OGR. It is in early stages of development but functions
pretty well as a data browser/preview/launcher.

-gary


-- 
-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-
Gary Sherman
Chair, QGIS Project Steering Committee
-Desktop GIS Book:
 *http://desktopgisbook.com
-Spatial Hosting:
 *http://mrcc.com/hosting
"We work virtually everywhere"
-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-
___
Qgis-user mailing list
Qgis-user@lists.osgeo.org
http://lists.osgeo.org/mailman/listinfo/qgis-user


Re: [Qgis-user] qgis as a data catalog browser and viewer

2009-11-19 Thread Gary Sherman
On Wed, Nov 18, 2009 at 11:17 PM, maning sambale
 wrote:
> Has anybody used QGIS as a local GIS data catalog "engine"?
>
> The idea is to be able to:
>  - view and search data holdings
>  - get metadata information and storage path to get the data
>
> Any ideas are welcome.
>

I've been working on a project that will ultimately provide the things
you describe. I will be ready
to unveil it soon and will be looking for PyQGIS devs to help...

-gary

-- 
-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-
Gary Sherman
Chair, QGIS Project Steering Committee
-Desktop GIS Book:
 *http://desktopgisbook.com
-Spatial Hosting:
 *http://mrcc.com/hosting
"We work virtually everywhere"
-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-
___
Qgis-user mailing list
Qgis-user@lists.osgeo.org
http://lists.osgeo.org/mailman/listinfo/qgis-user


Re: [Qgis-user] mxd on Qgis

2009-10-29 Thread Gary Sherman
On Thu, Oct 29, 2009 at 9:29 AM,   wrote:
> Hi.
> Could anybody tell me what is the most straightforward way to open mxd files
> on Qgis?
An mxd file is a binary closed format. QGIS is unable to open mxd files.

-gary

> I am a Mac user, and I don't have arcGIS at the moment. I know about
> bootcamp and parallel but I am also working on that. Is that a way to do it
> using only OS X-based softwares?
> Cheers
> Gustavo
> ___
> Qgis-user mailing list
> Qgis-user@lists.osgeo.org
> http://lists.osgeo.org/mailman/listinfo/qgis-user
>
>



-- 
-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-
Gary Sherman
Chair, QGIS Project Steering Committee
-Desktop GIS Book:
 *http://desktopgisbook.com
-Spatial Hosting:
 *http://mrcc.com/hosting
"We work virtually everywhere"
-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-
___
Qgis-user mailing list
Qgis-user@lists.osgeo.org
http://lists.osgeo.org/mailman/listinfo/qgis-user


[Qgis-user] FOSS4G Demonstration Opportunity

2009-09-15 Thread Gary Sherman

For those of you attending FOSS4G this year:

"The FOSS4G conference is coming up and there are demonstration slots  
available. The demonstration theatre is a great chance to show off  
your latest project; or a cool hack, an example of your organization's  
work, or a new feature.


The only restriction is to show running software (i.e. not a  
presentation). Contact jody.garn...@lisasoft.com if you would like to  
sign up for a slot.


For more information and the current schedule visit: http://wiki.osgeo.org/wiki/FOSS4G_2009_Demonstration_Theatre 
"


-gary
-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-
Gary Sherman
Chair, QGIS Project Steering Committee
-Desktop GIS Book:
  *http://desktopgisbook.com
"We work virtually everywhere"
-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-

___
Qgis-user mailing list
Qgis-user@lists.osgeo.org
http://lists.osgeo.org/mailman/listinfo/qgis-user


Re: [Qgis-user] GeoRSS and CSW Plugins Added to Pyqgis Repo

2009-07-29 Thread Gary Sherman
The pyqgis.org site is meant to serve as the community repository. The  
need for another site is not clear to me...



-Gary

On Jul 29, 2009, at 7:45, "Sampson, David" > wrote:




Here they are:

http://pyqgis.org


It actually is nice to have this on offer until we have our community
repo up and going...

Cheers


-Original Message-
From: qgis-user-boun...@lists.osgeo.org
[mailto:qgis-user-boun...@lists.osgeo.org] On Behalf Of Sampson,  
David

Sent: Wednesday, July 29, 2009 10:13
To: cavall...@faunalia.it
Cc: qgis-user@lists.osgeo.org
Subject: RE: [Qgis-user] Introducing GeoRSS and CSW Plugins

This was discussed a while ago on the list.

The general feeling was that a community centric repository
was required, so I set one up.

I found dead repository that had other QGIS plugins, however
no one responded when I contacted the owners and the last
update was over a year ago.

If there is a better place for community developed plugins
that means I don't have to manage a repo... That would be great...

Cheers


-Original Message-
From: Paolo Cavallini [mailto:cavall...@faunalia.it]
Sent: Tuesday, July 28, 2009 14:04
To: Sampson, David
Cc: qgis-user@lists.osgeo.org
Subject: Re: [Qgis-user] Introducing GeoRSS and CSW Plugins

Sampson, David ha scritto:

Hey folks,

Thought I would update the list on these two plugins.


Hi Dave,
thanks a lot for this. Wouldn't it be better to add these to common
pyqgis repo, for better availablity to everybody?
All the best.
--
Paolo Cavallini: http://www.faunalia.it/pc


___
Qgis-user mailing list
Qgis-user@lists.osgeo.org
http://lists.osgeo.org/mailman/listinfo/qgis-user


___
Qgis-user mailing list
Qgis-user@lists.osgeo.org
http://lists.osgeo.org/mailman/listinfo/qgis-user

___
Qgis-user mailing list
Qgis-user@lists.osgeo.org
http://lists.osgeo.org/mailman/listinfo/qgis-user


Re: [Qgis-user] Re: Qgis.osgeo.org website

2009-07-11 Thread Gary Sherman


On Jul 11, 2009, at 1:59 PM, Werner Macho wrote:


Sorry if I confused you - just come back on monday and (If the
software works well .. it will be public)

regards
Werner



You expect people to read the instructions?

:)

-gary

-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-
Gary Sherman
Chair, QGIS Project Steering Committee
-Desktop GIS Book:
  *http://desktopgisbook.com
"We work virtually everywhere"
-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-

___
Qgis-user mailing list
Qgis-user@lists.osgeo.org
http://lists.osgeo.org/mailman/listinfo/qgis-user


Re: [Qgis-user] Re: Qgis.osgeo.org website

2009-07-11 Thread Gary Sherman

On Jul 11, 2009, at 9:16 AM, mtnbiketr...@zzz.com wrote:


The "poll" on Qgis.osgeo.org doesn't load in FireFox. 3




Doesn't load in Safari either...

-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-
Gary Sherman
Chair, QGIS Project Steering Committee
-Desktop GIS Book:
  *http://desktopgisbook.com
"We work virtually everywhere"
-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-

___
Qgis-user mailing list
Qgis-user@lists.osgeo.org
http://lists.osgeo.org/mailman/listinfo/qgis-user


Re: [Qgis-user] fTools error

2009-04-19 Thread Gary Sherman

What version of qgis?


Sent from my iPod

On Apr 19, 2009, at 21:13, Kosza Antal  wrote:


hi

i get the following popup on startup:


Couldn't load plugin fTools due an error when calling its initGui()
method

Traceback (most recent call last):
 File "", line 1, in
 File "/home/toni/.qgis//python/plugins/fTools/fTools.py", line 195,  
in

initGui
   menuBar = self.iface.mainWindow().menuBar()
AttributeError: menuBar

Python version:
2.5.4 (r254:67916, Feb 18 2009, 03:17:34)
[GCC 4.3.3]

in background (on console):

t...@erasmus:~/bin/qgis/qgis_unstable/build$ ../apps/bin/qgis
Python support ENABLED :-)
Warning: Object::connect: No such slot
QgsWFSPlugin::setCurrentTheme(QString)
Loaded : fTools (package: fTools)
Loaded : MapServer Export (package: mapserver_export)
Segmentation fault
t...@erasmus:~/bin/qgis/qgis_unstable/build$


___
Qgis-user mailing list
Qgis-user@lists.osgeo.org
http://lists.osgeo.org/mailman/listinfo/qgis-user

___
Qgis-user mailing list
Qgis-user@lists.osgeo.org
http://lists.osgeo.org/mailman/listinfo/qgis-user


[Qgis-user] Help Test WMS Basic HTTP Authentication

2009-04-18 Thread Gary Sherman
I have implemented basic HTTP authentication for the QGIS WMS provider
and am looking for some volunteers to test it. The changes have not
been committed to the QGIS SVN repository. Testing will require
compiling from source.

When creating or editing a WMS connection in QGIS you can now specify
an optional username and password to be used with a protected WMS.
These are stored in your QGIS settings. If you don't want the password
stored you can leave it blank and be prompted for it at connection
time.

I haven't had time to prepare a set of patches but you can download
the source tree (20Mb) that includes the WMS authentication from:

   http://gisalaska.com/qgis_wms_auth.zip

I am particularly interested in testing by folks that require a proxy.

Thanks,

-gary
-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-
Gary Sherman
Chair, QGIS Project Steering Committee
Micro Resources: http://mrcc.com
  *Geospatial Hosting
  *Web Site Hosting
"We work virtually everywhere"
-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_
___
Qgis-user mailing list
Qgis-user@lists.osgeo.org
http://lists.osgeo.org/mailman/listinfo/qgis-user


Re: [Qgis-user] WFS/WMS layers behind HTTP/HTTPS basic auth

2009-04-17 Thread Gary Sherman


On Apr 17, 2009, at 9:20 PM, Gary Sherman wrote:


On Apr 17, 2009, at 9:10 PM, Paolo Cavallini wrote:


Gary Sherman ha scritto:

On Apr 17, 2009, at 2:09 PM, Peter Willis wrote:



Does the priority increase as more people ask
for a specific feature?


This is already being worked on -- https://trac.osgeo.org/qgis/ticket/1603


Of course you are welcome to put additional resources (either
developers' time or money) to speed up progress in this direction.
All the best.


I have this working now, however with the feature freeze it will not  
make it

into trunk until after the 1.1 release.


I should clarify, I have this working for WMS.

-gary





-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-
Gary Sherman
Chair, QGIS Project Steering Committee
-Micro Resources: http://mrcc.com
  *Geospatial Hosting
  *Web Site Hosting
-Desktop GIS Book:
  *http://desktopgisbook.com
"We work virtually everywhere"
-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-

___
Qgis-user mailing list
Qgis-user@lists.osgeo.org
http://lists.osgeo.org/mailman/listinfo/qgis-user


Re: [Qgis-user] WFS/WMS layers behind HTTP/HTTPS basic auth

2009-04-17 Thread Gary Sherman

On Apr 17, 2009, at 9:10 PM, Paolo Cavallini wrote:


Gary Sherman ha scritto:

On Apr 17, 2009, at 2:09 PM, Peter Willis wrote:



Does the priority increase as more people ask
for a specific feature?


This is already being worked on -- https://trac.osgeo.org/qgis/ticket/1603


Of course you are welcome to put additional resources (either
developers' time or money) to speed up progress in this direction.
All the best.


I have this working now, however with the feature freeze it will not  
make it

into trunk until after the 1.1 release.

-gary


--
Paolo Cavallini: http://www.faunalia.it/pc
___
Qgis-user mailing list
Qgis-user@lists.osgeo.org
http://lists.osgeo.org/mailman/listinfo/qgis-user



-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-
Gary Sherman
Chair, QGIS Project Steering Committee
-Micro Resources: http://mrcc.com
  *Geospatial Hosting
  *Web Site Hosting
-Desktop GIS Book:
  *http://desktopgisbook.com
"We work virtually everywhere"
-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-

___
Qgis-user mailing list
Qgis-user@lists.osgeo.org
http://lists.osgeo.org/mailman/listinfo/qgis-user


Re: [Qgis-user] WFS/WMS layers behind HTTP/HTTPS basic auth

2009-04-17 Thread Gary Sherman

On Apr 17, 2009, at 2:09 PM, Peter Willis wrote:





Is there any way to use HTTP basic auth with QGIS WMS?

Currently there is no support for this but its something a few people
have requested now. I recommend adding an enhancement ticket to  
trac and

we will hopefully add support for this in the near future.
Thanks
Tim


Is there already a ticket for this in track?
Does the priority increase as more people ask
for a specific feature?


This is already being worked on -- https://trac.osgeo.org/qgis/ticket/1603

-gary

As a note; uDig handles WMS behind basic auth.
You may want to peruse their source code before
reinventing. Of course, they are programming in java
so it's difficult to tell how much of the basic auth
is being handled directly by java as opposed to
the actual program handling it directly.

Peter
___
Qgis-user mailing list
Qgis-user@lists.osgeo.org
http://lists.osgeo.org/mailman/listinfo/qgis-user



-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-
Gary Sherman
Chair, QGIS Project Steering Committee
-Micro Resources: http://mrcc.com
  *Geospatial Hosting
  *Web Site Hosting
-Desktop GIS Book:
  *http://desktopgisbook.com
"We work virtually everywhere"
-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-

___
Qgis-user mailing list
Qgis-user@lists.osgeo.org
http://lists.osgeo.org/mailman/listinfo/qgis-user


[Qgis-user] QGIS Is And Will Remain Free Open Source Software

2009-04-16 Thread Gary Sherman
My recent blog post (http://blog.qgis.org/qgis_going_closed_source)  
appears to have caused confusion for some. Be assured that the post  
was an April Fools (http://en.wikipedia.org/wiki/April_fools_day) joke.


QGIS is Free and Open Source Software and will remain so. There have  
been no changes to the project management, license, or philosophy. The  
development team is hard at work and preparing for a new release in  
the near future.


I apologize for any concern this may have caused in the community.  
Obviously my humor didn't translate well to all corners of the user  
base.


My previous QGIS April Fools joke a few years back was that we were  
porting the code from C++ to Java. Nobody believed that one...


-gary

-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-
Gary Sherman
Chair, QGIS Project Steering Committee
-Micro Resources: http://mrcc.com
  *Geospatial Hosting
  *Web Site Hosting
-Desktop GIS Book:
  *http://desktopgisbook.com
"We work virtually everywhere"
-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-

___
Qgis-user mailing list
Qgis-user@lists.osgeo.org
http://lists.osgeo.org/mailman/listinfo/qgis-user


Re: [Qgis-user] Relational Databases and PostGIS formatting of Vector Data

2009-04-10 Thread Gary Sherman

On Apr 8, 2009, at 3:25 PM, Peter Willis wrote:


Hello,

I just ingested a MULTIPOLYGON vector into a PostGIS enabled
database and realized that each vector becomes a unique TABLE
in the database.

Is this really necessary?

Why not use proper relational database techniques and have
all vectors of a specific type go into a single table
with a unique ID for rows that belong to a specific
vector?

Shouldn't I have tables named:

LINES
MULTIPOLYGONS
POLYGONS
POINTS

that link to a table named VECTORS by a unique ID.



From a data modeling perspective, you are viewing the lines,  
polygons, points, etc. as entities. When modeling features (lakes,  
towns, etc.) they *are* the entity and have attributes. A lake has a  
name, depth, area, and so forth and a spatial representation.


For GIS usage it makes sense to model the entity, not its spatial  
representation.


PostGIS (as well as Oracle Spatial, Informix DataBlade) use this  
scheme which is based on the OpenGIS "Simple Features Specification  
for SQL" (see http://www.opengeospatial.org/standards/sfs).


You end up with 200 tables (think layers) with attributes and a  
spatial representation. The scheme you suggest would add complexity  
not only in the database design, but also client implementation.





%<.

If we're going to use a database, we should make use of the
facilities provided by a database and stop thinking in terms of
flat files from the 1970s.


I think when viewed from the perspective that features==entities  
you'll find that the database is being used appropriately.


If you want more discussion on this issue, I suggest you post to the  
PostGIS users list where you'll get the attention of the developers  
among others. This isn't really a QGIS issue---we make use of PostGIS'  
OGC certified implementation.


Best...

-gary

-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-
Gary Sherman
Chair, QGIS Project Steering Committee
-Micro Resources: http://mrcc.com
  *Geospatial Hosting
  *Web Site Hosting
-Desktop GIS Book:
  *http://desktopgisbook.com
"We work virtually everywhere"
-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-

___
Qgis-user mailing list
Qgis-user@lists.osgeo.org
http://lists.osgeo.org/mailman/listinfo/qgis-user


[Qgis-user] Seeking to pay for the development of a QGIS Project File

2009-04-09 Thread Gary Sherman
From Greg Coats:

For the Charleston, South Carolina urban area, I have quantity=1360,  
0.60 meter resolution georeferenced GeoJP2 images.  I have created  
several reduced-resolution mosaic images, that in effect form a 25 GB  
image pyramid.  When zoomed out, for any particular scale, it is only  
necessary to draw pixels from one (not all) of the reduced resolution  
mosaic images.  I have built an ESRI ArcGIS interface that provides  
for easy seamless panning, and zooming in, and out through all of  
these images.

I would like to have prepared a functionally similar, easy to use,  
QGIS project file that would access, based on the current scale, the  
appropriate mosaic image, and as the user zooms in, seamlessly  
display the appropriate GeoJP2 image.  The GDAL utility gdalbuildvrt  
would be used to define the boundaries of the 1360, full resolution  
images.  I am seeking to pay someone to develop the QGIS project  
file.  If you are interested, then please contact me.
Greg Coats: gregcoats. @  mac.com

Sent from my BlackBerry® -_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-
Gary Sherman
Chair, QGIS Project Steering Committee
Micro Resources: http://mrcc.com
  *Geospatial Hosting
  *Web Site Hosting
"We work virtually everywhere"
-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-___
Qgis-user mailing list
Qgis-user@lists.osgeo.org
http://lists.osgeo.org/mailman/listinfo/qgis-user


[Qgis-user] Google Summer of Code deadline looms

2009-04-03 Thread Gary Sherman
The deadline for student applications is in roughly four hours (1900  
UTC) today. If you are going to apply, now is the time :)


http://socghop.appspot.com/

-gary

-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-
Gary Sherman
Chair, QGIS Project Steering Committee
-Micro Resources: http://mrcc.com
  *Geospatial Hosting
  *Web Site Hosting
-Desktop GIS Book:
  *http://desktopgisbook.com
"We work virtually everywhere"
-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-

___
Qgis-user mailing list
Qgis-user@lists.osgeo.org
http://lists.osgeo.org/mailman/listinfo/qgis-user


[Qgis-user] Google Summer of Code

2009-03-31 Thread Gary Sherman
The deadline for student applications is rapidly approaching (April  
3). If you are interested (or know of someone who may be) please act  
now.


The application web site is: http://socghop.appspot.com

To date we have received no applications for QGIS projects.

-gary

-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-
Gary Sherman
Chair, QGIS Project Steering Committee
-Micro Resources: http://mrcc.com
  *Geospatial Hosting
  *Web Site Hosting
-Desktop GIS Book:
  *http://desktopgisbook.com
"We work virtually everywhere"
-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-

___
Qgis-user mailing list
Qgis-user@lists.osgeo.org
http://lists.osgeo.org/mailman/listinfo/qgis-user


[Qgis-user] Re: AW: [Qgis-developer] New Plugin builder

2009-02-23 Thread Gary Sherman


On Feb 22, 2009, at 10:59 PM, Düster Horst wrote:


Gary

Great work and very very helpful for plugin developement.

I found out one issue in conjunction with QT-Designer. When I open  
the generated *.ui file with QT-Designer and save the file then the  
UI-Classname is not set correct. P.e. when you call a class  
myTestClass you will get a UI_myTestClass.ui with the corresponding  
class name. Open the file with QT-Designer add a push button and  
save the dialog, the dialog class is renamed in UI_Dialog but not  
the file of course. As the result the plugin throws an error message  
"class not found". To solve the problem you have to rename the  
dialog inside of QT-Designer from Dialog to your desired class name.




An oversite in the template that generates the Ui file. It should be  
fixed now.


Thanks,
-gary

Regards
Horst



Dr. Horst Düster
Stv. Amtschef / GIS-Koordinator

Kanton Solothurn
Bau- und Justizdepartement
Amt für Geoinformation
SO!GIS Koordination
Rötistrasse 4
CH-4501 Solothurn

Telefon ++41(0)32 627 25 32
Telefax ++41(0)32 627 22 14

mailto:horst.dues...@bd.so.ch
http://www.agi.so.ch

-Ursprüngliche Nachricht-
Von: Gary Sherman [mailto:sher...@mrcc.com]
Gesendet am: Samstag, 21. Februar 2009 23:30
An: qgis-user; qgis-developer List
Betreff: [Qgis-developer] New Plugin builder

I have created a web-based tool to build a minimal QGIS Python plugin.

Basically you specify the required parameters and it creates a ready
to run plugin with an blank dialog. The tool compiles the resource and
Ui files and packages it all up into a zip file for download.

You can try the builder at: http://pyqgis.org/builder/ 
plugin_builder.py


The zip file contains a Makefile which can be used to recompile the Ui
and resource files if you change them. The builder uses Qt 4.4,
however the generated plugin should work on any QGIS 1.0 install.

If you've been wanting to develop QGIS plugins but didn't know where
to start, this tool can get you started quickly by setting up the
structure for you.

Comments and suggestions are welcomed.

-gary

-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-
Gary Sherman
Chair, QGIS Project Steering Committee
-Micro Resources: http://mrcc.com
*Geospatial Hosting
*Web Site Hosting
-Desktop GIS Book:
*http://desktopgisbook.com
"We work virtually everywhere"
-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-

___
Qgis-developer mailing list
qgis-develo...@lists.osgeo.org
http://lists.osgeo.org/mailman/listinfo/qgis-developer



-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-
Gary Sherman
Chair, QGIS Project Steering Committee
-Micro Resources: http://mrcc.com
  *Geospatial Hosting
  *Web Site Hosting
-Desktop GIS Book:
  *http://desktopgisbook.com
"We work virtually everywhere"
-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-

___
Qgis-user mailing list
Qgis-user@lists.osgeo.org
http://lists.osgeo.org/mailman/listinfo/qgis-user


Re: [Qgis-user] Re: New Plugin builder

2009-02-23 Thread Gary Sherman


On Feb 23, 2009, at 1:09 AM, Paul R wrote:


Hi Gary,

Gary> I have created a web-based tool to build a minimal QGIS Python
Gary> plugin. Basically you specify the required parameters and it
Gary> creates a ready to run plugin with an blank dialog. The tool
Gary> compiles the resource and Ui files and packages it all up into
Gary> a zip file for download.

Nice work, thank you Gary. I think the "online" implementation is
a great way to get fast development and correction, but that  
ultimately
this will have to be bundled to the qgis distribution for offline  
usage.


Creating a command line version is easy. Creating a cross platform GUI  
version is much more involved

-gary


--
 Paul
___
Qgis-user mailing list
Qgis-user@lists.osgeo.org
http://lists.osgeo.org/mailman/listinfo/qgis-user



-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-
Gary Sherman
Chair, QGIS Project Steering Committee
-Micro Resources: http://mrcc.com
  *Geospatial Hosting
  *Web Site Hosting
-Desktop GIS Book:
  *http://desktopgisbook.com
"We work virtually everywhere"
-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-

___
Qgis-user mailing list
Qgis-user@lists.osgeo.org
http://lists.osgeo.org/mailman/listinfo/qgis-user


[Qgis-user] Re: [Qgis-developer] New Plugin builder

2009-02-21 Thread Gary Sherman


On Feb 21, 2009, at 2:09 PM, Barry Rowlingson wrote:


2009/2/21 Gary Sherman :


You can try the builder at: http://pyqgis.org/builder/plugin_builder.py

The zip file contains a Makefile which can be used to recompile the  
Ui and
resource files if you change them. The builder uses Qt 4.4, however  
the

generated plugin should work on any QGIS 1.0 install.



Thanks for the review.

My zip file didn't have a Makefile with it...

Minor deployment error. Fixed now.



http://pyqgis.org/built_plugins/fnord.zip

Also, the fnordDialog.py file still has a comment relating to 'Zoom to
point' in it, which I guess is a hangover from your template plugin.
Needs substituting with the string from the web form.

I left that in to see if anyone actually read the code :)

Appropriate comment is now in place.

-gary



Neat though.

Barry



-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-
Gary Sherman
Chair, QGIS Project Steering Committee
-Micro Resources: http://mrcc.com
  *Geospatial Hosting
  *Web Site Hosting
-Desktop GIS Book:
  *http://desktopgisbook.com
"We work virtually everywhere"
-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-

___
Qgis-user mailing list
Qgis-user@lists.osgeo.org
http://lists.osgeo.org/mailman/listinfo/qgis-user


[Qgis-user] New Plugin builder

2009-02-21 Thread Gary Sherman

I have created a web-based tool to build a minimal QGIS Python plugin.

Basically you specify the required parameters and it creates a ready  
to run plugin with an blank dialog. The tool compiles the resource and  
Ui files and packages it all up into a zip file for download.


You can try the builder at: http://pyqgis.org/builder/plugin_builder.py

The zip file contains a Makefile which can be used to recompile the Ui  
and resource files if you change them. The builder uses Qt 4.4,  
however the generated plugin should work on any QGIS 1.0 install.


If you've been wanting to develop QGIS plugins but didn't know where  
to start, this tool can get you started quickly by setting up the  
structure for you.


Comments and suggestions are welcomed.

-gary

-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-
Gary Sherman
Chair, QGIS Project Steering Committee
-Micro Resources: http://mrcc.com
  *Geospatial Hosting
  *Web Site Hosting
-Desktop GIS Book:
  *http://desktopgisbook.com
"We work virtually everywhere"
-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-

___
Qgis-user mailing list
Qgis-user@lists.osgeo.org
http://lists.osgeo.org/mailman/listinfo/qgis-user


Re: [Qgis-user] Win binry w/o osgeo4w ?

2009-02-21 Thread Gary Sherman


On Feb 21, 2009, at 12:39 PM, Barend Kobben wrote:

Fair enough, but that's not the point I'm after. You let the  
students do it

themsleves, but in our setting, we have apps deployed on the schooll
servers, and students run them from there. That's not feasible with  
the

OSGeo4W setup, and I want to be able to install just QGIS off-line.


Have you looked at: Unattended install of Qgis (et al) from OsGeo4w 
(http://blog.qgis.org/node/124)?




BArend

On 19-02-09 08:35, "Agustin Lobo"  wrote:


Barend,

I'm using the osgeo4w installation for teaching
students who had no previous skills on
in GIS and/or complex installation processes.
Try my directions (tested with many installations by the students):

http://sites.google.com/site/eospansite/qsig-for-windows
or
http://wiki.qgis.org/qgiswiki/OsGeo4wSetup

I think that the osgeo4w-setup is the way to go, you
can install many GIS utilities. We should just get QGIS
listed as one of the packages listed under Express install.

Agus


[Qgis-user] Win binry w/o osgeo4w ?
Barend Kobben kobben at itc.nl
Wed Feb 18 16:12:12 EST 2009

   * Previous message: [Qgis-user] osgeo4w package
   * Next message: [Qgis-user] Win binry w/o osgeo4w ?
   * Messages sorted by: [ date ] [ thread ] [ subject ] [ author ]

Hi,

When can we expect a 'stand-alone' Win package (and/or installer).  
It's
really not useable in our university setting to distribute QGIS  
through the
the whole OS4geoW, especially for use in a digital learning  
environment...



--
Barend Köbben
International Institute for Geo-Information
Sciences and Earth Observation (ITC)
PO Box 6, 7500AA Enschede, The Netherlands
+31 (0)53 4874253


International Institute for Geo-Information Science and Earth  
Observation (ITC)

Chamber of Commerce: 410 27 560

E-mail disclaimer
The information in this e-mail, including any attachments, is  
intended for the addressee only. If you are not the intended  
recipient, you are hereby notified that any disclosure, copying,  
distribution or action in relation to the content of this  
information is strictly prohibited. If you have received this e-mail  
by mistake, please delete the message and any attachment and inform  
the sender by return e-mail. ITC accepts no liability for any error  
or omission in the message content or for damage of any kind that  
may arise as a result of e-mail transmission.

___
Qgis-user mailing list
Qgis-user@lists.osgeo.org
http://lists.osgeo.org/mailman/listinfo/qgis-user



-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-
Gary Sherman
Chair, QGIS Project Steering Committee
-Micro Resources: http://mrcc.com
  *Geospatial Hosting
  *Web Site Hosting
-Desktop GIS Book:
  *http://desktopgisbook.com
"We work virtually everywhere"
-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-

___
Qgis-user mailing list
Qgis-user@lists.osgeo.org
http://lists.osgeo.org/mailman/listinfo/qgis-user


[Qgis-user] Python repositories/download site offline

2009-02-20 Thread Gary Sherman
We are currently experiencing an issue with the server that hosts the  
Python repositories (official and contributed) and the QGIS download  
site.


Technical support is working on the problem.

Downloads can be grabbed directly from http://download.osgeo.org/qgis/

-gary

-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-
Gary Sherman
Chair, QGIS Project Steering Committee
-Micro Resources: http://mrcc.com
  *Geospatial Hosting
  *Web Site Hosting
-Desktop GIS Book:
  *http://desktopgisbook.com
"We work virtually everywhere"
-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-

___
Qgis-user mailing list
Qgis-user@lists.osgeo.org
http://lists.osgeo.org/mailman/listinfo/qgis-user


[Qgis-user] API documentation for Stable and HEAD

2009-02-07 Thread Gary Sherman
I have rearranged http://doc.qgis.org a bit to provide both the API  
documentation for the 1.0 stable release and the current development  
version (HEAD).


-gary

-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-
Gary Sherman
Chair, QGIS Project Steering Committee
-Micro Resources: http://mrcc.com
  *Geospatial Hosting
  *Web Site Hosting
-Desktop GIS Book:
  *http://desktopgisbook.com
"We work virtually everywhere"
-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-

___
Qgis-user mailing list
Qgis-user@lists.osgeo.org
http://lists.osgeo.org/mailman/listinfo/qgis-user


Re: AW: [Qgis-user] User contributed Plugins/numerical edit of vertex

2009-01-26 Thread Gary Sherman

On Jan 26, 2009, at 5:13 AM, Möri Cedric wrote:


Borys,

can you tell me the link to the upload page for the new repository?  
I'm not able to find it. The wiki only points to the old repository (http://wiki.qgis.org/qgiswiki/PluginRepositories 
)


The admin interface for uploading user-contributed plugins is at:
http://pyqgis.org/admin/contributed

-gary


-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-
Gary Sherman
Chair, QGIS Project Steering Committee
-Micro Resources: http://mrcc.com
  *Geospatial Hosting
  *Web Site Hosting
-Desktop GIS Book:
  *http://desktopgisbook.com
"We work virtually everywhere"
-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-

___
Qgis-user mailing list
Qgis-user@lists.osgeo.org
http://lists.osgeo.org/mailman/listinfo/qgis-user


Re: [Qgis-user] administrator rights and writing permission

2008-11-15 Thread Gary Sherman

Patrick Giraudoux wrote:

Dear Listers,

Using GRASS/QGIS under Linux usually, I am using QGIS 0.11.0 Metis under 
Windows on a teaching purpose and meet a problem with the writing 
permission given by default. All the students and myself are working 
with limited accounts, the administrator account being used just for 
managing the computers (this practice is recommendable for security and 
even compulsory under UNIX).


When I try to start a shell session in GRASS (grass tools), I get this 
message:


mkdir: cannot create directory `/home': Permission denied sh: cd: 
/home/giraudoux: No such file or directory


and then can work normally. I was not that much worried about that until 
I found  that some GRASS functions (e.g. i.fusion.brovey)must write in 
the directory /home, of course unsuccessfully and thus fail. They can be 
used only if one has full rights on the computer including writing on 
the C:\Program Files directory (actually quite dodgy on a routine basis).


My question(s): am I right with this ? If so, is there a way to specify 
a by default directory other than C: that could be used for writing 
(e.g. into another partition, or into e.g. the application data of the 
user) ?


Thanks in advance for any hint,
Try setting the Windows HOME and/or HOMEDIR environment variable to 
point to user-writable directory.


-gary
--
-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-
Gary Sherman
Chair, QGIS Project Steering Committee
-Micro Resources: http://mrcc.com
 *Geospatial Hosting
 *Web Site Hosting
-Desktop GIS Book:
 *http://desktopgisbook.com
"We work virtually everywhere"
-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-


___
Qgis-user mailing list
Qgis-user@lists.osgeo.org
http://lists.osgeo.org/mailman/listinfo/qgis-user


Re: [Qgis-user] QGis proxy settings

2008-10-24 Thread Gary Sherman
The 1.0 repositories will operate on port 80 so that will eliminate part of the 
issue.
--Original Message--
From: Craig Leat
Sender: 
To: qgis-user@lists.osgeo.org
To: [EMAIL PROTECTED]
Sent: Oct 23, 2008 7:14 AM
Subject: Re: [Qgis-user] QGis proxy settings

Hi

Borys Jurgiel wrote:
> I've just uploaded the new proxy-friendly version of the Plugin Installer with
> Barry's patch (0.06.5). Proxy users, Could you upgrade and test it please?

In a python console I tried:
>>> import urllib
>>> urllib.getproxies()
{'http': 'http://craig:[EMAIL PROTECTED]:8080/', 'no':
'localhost,127.0.0.0/8,*.local'}

My http proxy requires authentication and I see that my username and
password are returned. I tried adding the following to QPHttp:
self.proxy.setUser('craig')
self.proxy.setPassword('')

But I must be missing something because the repos are still unavailable.

Craig
___
Qgis-user mailing list
Qgis-user@lists.osgeo.org
http://lists.osgeo.org/mailman/listinfo/qgis-user


Sent from my BlackBerry® -_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-
Gary Sherman
Chair, QGIS Project Steering Committee
Micro Resources: http://mrcc.com
  *Geospatial Hosting
  *Web Site Hosting
"We work virtually everywhere"
-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-___
Qgis-user mailing list
Qgis-user@lists.osgeo.org
http://lists.osgeo.org/mailman/listinfo/qgis-user


Re: [Qgis-user] OGR2Layers

2008-10-20 Thread Gary Sherman

maning sambale wrote:

The plugins loads and succesfully created the openlayers html.  But no
kml was created from the shapefile

This is what python console says:
Traceback (most recent call last):
  File "/Users/maning/.qgis//python/plugins/OGR2Layers/ogr2Layers.py",
line 161, in WriteKML
res=os.popen(myogr2ogr).readlines()
IOError: [Errno 4] Interrupted system call


Check to make sure your version of ogr2ogr supports KML output.


Python version:
2.5.1 (r251:54863, Apr 15 2008, 22:57:26)
[GCC 4.0.1 (Apple Inc. build 5465)]


I'm using mac and qgis 0.11

On 10/21/08, Gary Sherman <[EMAIL PROTECTED]> wrote:

maning sambale wrote:

Saw this message from slashgeo.

OGR2Layers is a free and easy to use python plugin for Quantum GIS
open source software. Only a few clicks let you export your vectorial
GIS data layer to a OpenLayers HTML map, that you can easily include
in your website !

http://ogr2layers.org/index.html

Just in time for some of my projects.  Is it really necessary ti
install FWTools?  I'm on a mac.

Not sure buy my guess is if you have ogr2ogr and friends installed and
in your path it should work.

-gary


cheer,
maning







___
Qgis-user mailing list
Qgis-user@lists.osgeo.org
http://lists.osgeo.org/mailman/listinfo/qgis-user


Re: [Qgis-user] OGR2Layers

2008-10-20 Thread Gary Sherman

maning sambale wrote:

Saw this message from slashgeo.

OGR2Layers is a free and easy to use python plugin for Quantum GIS
open source software. Only a few clicks let you export your vectorial
GIS data layer to a OpenLayers HTML map, that you can easily include
in your website !

http://ogr2layers.org/index.html

Just in time for some of my projects.  Is it really necessary ti
install FWTools?  I'm on a mac.
Not sure buy my guess is if you have ogr2ogr and friends installed and 
in your path it should work.


-gary



cheer,
maning


___
Qgis-user mailing list
Qgis-user@lists.osgeo.org
http://lists.osgeo.org/mailman/listinfo/qgis-user


[Qgis-user] Wiki online

2008-06-06 Thread Gary Sherman

The qgis wiki is back online. Please report any problems directly to me.

-gary
-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-
Gary Sherman
Chair, QGIS Project Steering Committee
-Micro Resources: http://mrcc.com
  *Geospatial Hosting
  *Web Site Hosting
-Desktop GIS Book:
  *http://desktopgisbook.com
"We work virtually everywhere"
-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-






___
Qgis-user mailing list
Qgis-user@lists.osgeo.org
http://lists.osgeo.org/mailman/listinfo/qgis-user


Re: [Qgis-user] manual revision

2008-06-06 Thread Gary Sherman
In preparation for the release of QGIS 1.0, we are looking at  
revamping

the manual.  We need
1. feedback from the user community
and
2. assistance in rewriting the latex source code for the manual.

Regarding item 1
 the manual is currently formatted with even and odd pages. Is
this necessary? Does anyone printout the manual in book form? If we  
went
to a one-sided format, would this bother anyone? Please post your  
input

on the qgis-user mailing list.


Yes, the manual is printed. The even/odd page format must be retained.



Regarding item 2
please let us know if you would be interested in assisting with
the manual revision. The current task is converting the inconsistent
inline styles - for buttons, filenames, menu options, etc - to a set  
of

conventions defined in the foreword. If you would like to help, please
join the qgis-community-team mailing list and send a post.

Thanks in advance for your contributions

Tara



___
Qgis-user mailing list
Qgis-user@lists.osgeo.org
http://lists.osgeo.org/mailman/listinfo/qgis-user


-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-
Gary Sherman
Chair, QGIS Project Steering Committee
-Micro Resources: http://mrcc.com
  *Geospatial Hosting
  *Web Site Hosting
-Desktop GIS Book:
  *http://desktopgisbook.com
"We work virtually everywhere"
-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-

___
Qgis-user mailing list
Qgis-user@lists.osgeo.org
http://lists.osgeo.org/mailman/listinfo/qgis-user


Re: [Qgis-user] www.qgis.org

2008-06-05 Thread Gary Sherman
It's mostly back now, although the wiki is still offline. It may be   
back in the next day or so.

On Jun 4, 2008, at 5:25 AM, David Fawcett wrote:


Anyone have an idea when the qgis Web site will be back up?

david.
___
Qgis-user mailing list
Qgis-user@lists.osgeo.org
http://lists.osgeo.org/mailman/listinfo/qgis-user


-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-
Gary Sherman
Chair, QGIS Project Steering Committee
-Micro Resources: http://mrcc.com
  *Geospatial Hosting
  *Web Site Hosting
-Desktop GIS Book:
  *http://desktopgisbook.com
"We work virtually everywhere"
-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-






___
Qgis-user mailing list
Qgis-user@lists.osgeo.org
http://lists.osgeo.org/mailman/listinfo/qgis-user


Re: [Qgis-user] how to export mapfile in qgis?

2008-04-25 Thread Gary Sherman

On Apr 25, 2008, at 1:33 AM, Chen kuja wrote:

File "C:\Python25\Lib\xml\dom\expatbuilder.py", line 204, in parseFile
  buffer = file.read(16*1024)
AttributeError: read

This looks like a Python problem, not an issue with the exporter.

-gary
-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-
Gary Sherman
Chair, QGIS Project Steering Committee
-Micro Resources: http://mrcc.com
  *Geospatial Hosting
  *Web Site Hosting
-Desktop GIS Book:
  *http://desktopgisbook.com
"We work virtually everywhere"
-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-






___
Qgis-user mailing list
Qgis-user@lists.osgeo.org
http://lists.osgeo.org/mailman/listinfo/qgis-user


Re: [Qgis-user] v0.9.2 Add Delimited Text Layer

2008-04-07 Thread Gary Sherman

On Apr 6, 2008, at 10:45 PM, Anita Graser wrote:
It seems like the new version has some problems with the "Add  
Delimited Text Layer" Plug-In.

All the .csv files which worked fine in 0.9.1 now give:
"The layer is not a valid layer and can not be added to the map"
Any ideas?
--

My tests indicate that the plugin is working properly. Can you provide  
a file for testing (email directly to me).


-gary





-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-
Gary Sherman
Chair, QGIS Project Steering Committee
-Micro Resources: http://mrcc.com
  *Geospatial Hosting
  *Web Site Hosting
-Desktop GIS Book:
  *http://desktopgisbook.com
"We work virtually everywhere"
-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-






___
Qgis-user mailing list
Qgis-user@lists.osgeo.org
http://lists.osgeo.org/mailman/listinfo/qgis-user


Re: [Qgis-user] Mapserver Export

2008-03-30 Thread Gary Sherman

On Feb 19, 2008, at 1:45 AM, Micha Silver wrote:
The layers in a qgis project are exported to the *.map file in the  
same order that they appear in the qgis table of contents. In qgis  
(like most desktop gis apps) the top layer in the TOC also appears  
"on top" of the other layers. But in mapserver it's reversed: the  
layers are pushed into the graphics file in the order they appear in  
the *.map file, so the bottom most layer displays "on top" of all  
the others.  Would it be possible to write the layers into the *map  
file in reverse?



What version of QGIS are you using? I'm not seeing the reverse problem  
with the current exporter.


-gary
-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-
Gary Sherman
Chair, QGIS Project Steering Committee
-Micro Resources: http://mrcc.com
  *Geospatial Hosting
  *Web Site Hosting
-Desktop GIS Book:
  *http://desktopgisbook.com
"We work virtually everywhere"
-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-






___
Qgis-user mailing list
Qgis-user@lists.osgeo.org
http://lists.osgeo.org/mailman/listinfo/qgis-user


Re: [Qgis-user] plugin installation

2008-03-06 Thread Gary Sherman

On Mar 6, 2008, at 4:11 PM, Martin Dobias wrote:


On Fri, Mar 7, 2008 at 1:57 AM, Gary Sherman <[EMAIL PROTECTED]> wrote:


On Mar 6, 2008, at 11:42 AM, Martin Dobias wrote:


Now I've found out that the problem is due to incorrect creation of
directories - in some cases zip files, directories are not listed  
(in
that case we create only top-level dir which leads to the problem  
with

subdirectories).

Fixed in trunk in r8191 but users of prebuilt packages will have to
unpack the plugin manually.


The version prior to r8191 worked and was not the cause of the issue
in this thread. The problem is that the fix has not made it into a
released version yet.


Actually, I had the same error in my fresh svn trunk checkout so I
doubt that it was working ... were you able to install html_imagemap?
That .zip file doesn't list the directories, only files. So only the
top level directory was created which resulted in an error since that
.zip contains also some more subdirs which were not created.
Well then it was just another perturbation that hadn't been accounted  
for yet. Hopefully the latest changes will cover all the bases

-gary



Martin


-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-
Gary Sherman
Chair, QGIS Project Steering Committee
-Micro Resources: http://mrcc.com
  *Geospatial Hosting
  *Web Site Hosting
-Desktop GIS Book:
  *http://desktopgisbook.com
"We work virtually everywhere"
-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-

___
Qgis-user mailing list
Qgis-user@lists.osgeo.org
http://lists.osgeo.org/mailman/listinfo/qgis-user


Re: [Qgis-user] plugin installation

2008-03-06 Thread Gary Sherman


On Mar 6, 2008, at 4:11 PM, Martin Dobias wrote:


On Fri, Mar 7, 2008 at 1:57 AM, Gary Sherman <[EMAIL PROTECTED]> wrote:


On Mar 6, 2008, at 11:42 AM, Martin Dobias wrote:


Now I've found out that the problem is due to incorrect creation of
directories - in some cases zip files, directories are not listed  
(in
that case we create only top-level dir which leads to the problem  
with

subdirectories).

Fixed in trunk in r8191 but users of prebuilt packages will have to
unpack the plugin manually.


The version prior to r8191 worked and was not the cause of the issue
in this thread. The problem is that the fix has not made it into a
released version yet.


Actually, I had the same error in my fresh svn trunk checkout so I
doubt that it was working ... were you able to install html_imagemap?
That .zip file doesn't list the directories, only files. So only the
top level directory was created which resulted in an error since that
.zip contains also some more subdirs which were not created.

Martin


-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-
Gary Sherman
Chair, QGIS Project Steering Committee
-Micro Resources: http://mrcc.com
  *Geospatial Hosting
  *Web Site Hosting
-Desktop GIS Book:
  *http://desktopgisbook.com
"We work virtually everywhere"
-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-






___
Qgis-user mailing list
Qgis-user@lists.osgeo.org
http://lists.osgeo.org/mailman/listinfo/qgis-user


Re: [Qgis-user] plugin installation

2008-03-06 Thread Gary Sherman

On Mar 6, 2008, at 11:42 AM, Martin Dobias wrote:


On Thu, Mar 6, 2008 at 8:45 PM, Richard Duivenvoorde
<[EMAIL PROTECTED]> wrote:

Hi Chris,

I'm the author of the htmlimagemap plugin, and I've seen this issue  
with

several other plugins myself. I don't know what's exactly the problem
here. Maybe I should give write or execute access to the zip and  
all of

it's contents?


Now I've found out that the problem is due to incorrect creation of
directories - in some cases zip files, directories are not listed (in
that case we create only top-level dir which leads to the problem with
subdirectories).

Fixed in trunk in r8191 but users of prebuilt packages will have to
unpack the plugin manually.

The version prior to r8191 worked and was not the cause of the issue  
in this thread. The problem is that the fix has not made it into a  
released version yet.

Martin
___
Qgis-user mailing list
Qgis-user@lists.osgeo.org
http://lists.osgeo.org/mailman/listinfo/qgis-user


-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-
Gary Sherman
Chair, QGIS Project Steering Committee
-Micro Resources: http://mrcc.com
  *Geospatial Hosting
  *Web Site Hosting
-Desktop GIS Book:
  *http://desktopgisbook.com
"We work virtually everywhere"
-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-






___
Qgis-user mailing list
Qgis-user@lists.osgeo.org
http://lists.osgeo.org/mailman/listinfo/qgis-user


[Qgis-user] PSC Meeting

2008-03-04 Thread Gary Sherman

A QGIS PSC meeting is scheduled for Friday March 7th at:

http://timeanddate.com/worldclock/meetingdetails.html?year=2008&month=3&day=7&hour=15&min=0&sec=0&p1=456&p2=18&p3=268&p4=37

I have started an agenda at: http://wiki.qgis.org/qgiswiki/March_7%2C_2008_PSC

Feel free to add to the agenda. If there is time we can take up  
development issues as well.


-gary
-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-
Gary Sherman
Chair, QGIS Project Steering Committee
-Micro Resources: http://mrcc.com
  *Geospatial Hosting
  *Web Site Hosting
-Desktop GIS Book:
  *http://desktopgisbook.com
"We work virtually everywhere"
-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-






___
Qgis-user mailing list
Qgis-user@lists.osgeo.org
http://lists.osgeo.org/mailman/listinfo/qgis-user


Re: [Qgis-user] data to play with in qgis

2008-03-01 Thread Gary Sherman

On Mar 1, 2008, at 2:51 PM, Agile Aspect wrote:


Hi - I'm looking for data to play with in the latest version of qgis.


Unfortunately, I'm new to GIS but I have background in software
development , differential geometry, physics, and SONAR imaging.

Note, the file

  http://qgis.org/uploadfiles/qgis_sample_data.tar.gz

- the so-called sample data set , only contains shape files - which
is basically useless.


I think calling it useless is a bit harsh. The purpose is to provide a  
small, easy to download set of data for users to try, not a  
comprehensive data set.




Ideally,  the data set would allow me to follow the presentation in  
the
user manual beyond simply opening a shape file (which if I recall  
correctly,

was 3 mouse clicks.)



An alternative is to work through the material from the FOSS4G2007  
workshop:

http://blog.qgis.org/?q=node/86

In addition to learning how to use Quantum GIS,  I'm going to try  
and convince

a GIS Analyst to use Quantum GIS too.

I'd prefer Alaska data but any location would work.


You can always fetch your own data. See http://agdc.usgs.gov.

-gary



Any help would be greatly appreciated.

-- Ken

--

"We are drowning in information and starving for knowledge."

- Rutherford D. Roger


___
Qgis-user mailing list
Qgis-user@lists.osgeo.org
http://lists.osgeo.org/mailman/listinfo/qgis-user


-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-
Gary Sherman
Chair, QGIS Project Steering Committee
-Micro Resources: http://mrcc.com
  *Geospatial Hosting
  *Web Site Hosting
-Desktop GIS Book:
  *http://desktopgisbook.com
"We work virtually everywhere"
-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-

___
Qgis-user mailing list
Qgis-user@lists.osgeo.org
http://lists.osgeo.org/mailman/listinfo/qgis-user


Re: [Qgis-user] wrong with "export to mapserver"

2008-02-26 Thread Gary Sherman
The previous problems have already been fixed in version 0.2 of the  
plugin, available from:


http://pyqgis.spatialserver.net

-gary

On Feb 26, 2008, at 11:00 AM, Richard Duivenvoorde wrote:


Hi Orkun,
did you save your project as a qgs-project file first?
I tried the plugin with 9.1 here on windows, with a simple postgis  
layer and it generated a mapfile.
First save the project with your postgis layers, and after that,  
export this project to mapfile.

see screendump http://www.duif.net/qgis/mapserverexport1.jpg
and http://www.duif.net/qgis/mapserverexport2.jpg for the 'succes'- 
dialog.


Another option is to use the upcoming python plugin for that (you  
need qgis 9.1 or higher to use the python plugins). After enabling  
'Plugin Installer'-plugin, you can get a list of current (python)  
plugins and get it. It seems that there is a bug in it, and there  
are some other things which can be refined (see this thread: http://www.nabble.com/Mapserver-Export-to15454127.html) 
. But if you can write a few lines of python, it's a good start. You  
can find python plugin hints in blog wiki or mailinglists.


Hopefully Gary will work on it any further (don't know his plans/ 
planning), or we must find a way in which other people can continue  
working on other peoples plugins ...


Good luck

Richard Duivenvoorde

orkun wrote:

hello
I am trying to use "export to mapserver" a postgis map.
But nothing happens. Qgis doesn't seem to produce any map file.
Qgis displays no error message as well.
what might the wrong be ?
regards





-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-
Gary Sherman
Chair, QGIS Project Steering Committee
-Micro Resources: http://mrcc.com
  *Geospatial Hosting
  *Web Site Hosting
-Desktop GIS Book:
  *http://desktopgisbook.com
"We work virtually everywhere"
-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-

___
Qgis-user mailing list
Qgis-user@lists.osgeo.org
http://lists.osgeo.org/mailman/listinfo/qgis-user


Re: [Qgis-user] Configuration file in Windows

2008-02-14 Thread Gary Sherman

On Feb 14, 2008, at 11:21 AM, Goyo wrote:


Hello everyone,

I'm using QGIS 0.9.1 in Windows XP, installed from the installer
provided in the downloads page. I've lost the attribute data toolbar,
it's not shown even if I select it in the toolbar menu. I guess
something is broken in the configuration file. I've seen that it's
~/.config/QuantumGIS/qgis.conf and that removing it QGIS return to
default configuration, but I can't find any qgis.conf in Windows.

I uninstalled QGIS and the installation directory was completely
removed. Then I searched my user folder for qgis related files --even
hidden ones and removed qgis.db, the only one I was able to find. But
still QGIS remember the old broken configuration when I install it
again.

I'm hoping someone can tell me how to reset configuration to  
defaults in

Windows and get all my toolbars back.

Thanks in advance

Goyo


On Windows the QGIS settings are stored in the registry. You should be  
able to get the toolbars back by right-clicking in the toolbar area  
and selecting the ones you want visible.


-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-
Gary Sherman
Chair, QGIS Project Steering Committee
-Micro Resources: http://mrcc.com
  *Geospatial Hosting
  *Web Site Hosting
-Desktop GIS Book:
  *http://desktopgisbook.com
"We work virtually everywhere"
-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-

___
Qgis-user mailing list
Qgis-user@lists.osgeo.org
http://lists.osgeo.org/mailman/listinfo/qgis-user


[Qgis-user] New PSC Member

2008-02-08 Thread Gary Sherman
Congratulations to Paolo Cavallini for being appointed the new QGIS  
PSC Financial/Marketing Advisor.


Paolo brings considerable experience from his efforts on the Italian  
FOSS4G (or GFOSS) scene. Please welcome him aboard.


-gary
-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-
Gary Sherman
Chair, QGIS Project Steering Committee
-Micro Resources: http://mrcc.com
  *Geospatial Hosting
  *Web Site Hosting
-Desktop GIS Book:
  *http://desktopgisbook.com
"We work virtually everywhere"
-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-






___
Qgis-user mailing list
Qgis-user@lists.osgeo.org
http://lists.osgeo.org/mailman/listinfo/qgis-user


[Qgis-user] Last call for PSC nominations

2008-02-07 Thread Gary Sherman
Nominations for the QGIS PSC close in about 9 hours. For details and  
to nominate someone, see:


http://wiki.qgis.org/qgiswiki/Call_for_Nominations_January_2008

-gary
-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-
Gary Sherman
Chair, QGIS Project Steering Committee
-Micro Resources: http://mrcc.com
  *Geospatial Hosting
  *Web Site Hosting
-Desktop GIS Book:
  *http://desktopgisbook.com
"We work virtually everywhere"
-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-_-






___
Qgis-user mailing list
Qgis-user@lists.osgeo.org
http://lists.osgeo.org/mailman/listinfo/qgis-user