[Qgis-developer] v.generalize in Processing: wrong output projection

2014-10-19 Thread Paolo Cavallini
Hi all.
Applying v.generalize through Processing on data with prj:

PROJCS[ED50_UTM_zone_30N,GEOGCS[GCS_European_1950,DATUM[D_European_1950,SPHEROID[International_1924,6378388,297]],PRIMEM[Greenwich,0],UNIT[Degree,0.017453292519943295]],PROJECTION[Transverse_Mercator],PARAMETER[latitude_of_origin,0],PARAMETER[central_meridian,-3],PARAMETER[scale_factor,0.9996],PARAMETER[false_easting,50],PARAMETER[false_northing,0],UNIT[Meter,1]]

generates an output with a wrong prj:

PROJCS[UTM_Zone_30_Northern_Hemisphere,GEOGCS[GCS_international,DATUM[D_unknown,SPHEROID[International_1924,6378388,297]],PRIMEM[Greenwich,0],UNIT[Degree,0.017453292519943295]],PROJECTION[Transverse_Mercator],PARAMETER[latitude_of_origin,0],PARAMETER[central_meridian,-3],PARAMETER[scale_factor,0.9996],PARAMETER[false_easting,50],PARAMETER[false_northing,0],UNIT[Meter,1]]

that is interpreted by QGIS as a custom projection (USER:17 -  * SR generato
(+proj=utm +zone=30 +ellps=intl +units=m +no_defs)).

Anyone confirms? It is not clear to me which part of the toolchain is to blame.
Should I open a ticket?

All the best.
-- 
Paolo Cavallini - www.faunalia.eu
Corsi QGIS e PostGIS: http://www.faunalia.eu/training.html
file:///tmp/processing/d12f7e0d4a7c8a6912550128a0d9/output.prj
___
Qgis-developer mailing list
Qgis-developer@lists.osgeo.org
http://lists.osgeo.org/mailman/listinfo/qgis-developer


Re: [Qgis-developer] Invisible shapefile

2014-10-19 Thread Saber Razmjooei
There seems to be a problem with SAGA's shapefile writer/reader. See this:
http://hub.qgis.org/issues/11007

Cheers,
Saber


-Original Message-
From: qgis-developer-boun...@lists.osgeo.org
[mailto:qgis-developer-boun...@lists.osgeo.org] On Behalf Of Paolo Cavallini
Sent: 18 October 2014 17:01
To: Even Rouault
Cc: qgis-developer@lists.osgeo.org
Subject: Re: [Qgis-developer] Invisible shapefile

Il 18/10/2014 13:59, Even Rouault ha scritto:

 Seems more of a problem with SAGA though.
 Do you think I should open a ticket upstream?
 
 Yes, that should likely be fixed on SAGA side.

Done: https://sourceforge.net/p/saga-gis/bugs/197/

 Perhaps OGR could also better react in that case. Perhaps open a 
 ticket in GDAL trac with the shapefile attached.

Done: http://trac.osgeo.org/gdal/attachment/ticket/5702/

Thanks.
--
Paolo Cavallini - www.faunalia.eu
Corsi QGIS e PostGIS: http://www.faunalia.eu/training.html
___
Qgis-developer mailing list
Qgis-developer@lists.osgeo.org
http://lists.osgeo.org/mailman/listinfo/qgis-developer


--
This email and any files transmitted with it are confidential and intended 
solely for the use of the individual or entity to whom they are addressed.
If you have received this email in error please notify the system manager. This 
message contains confidential information and is intended only for the
individual named. If you are not the named addressee you should not 
disseminate, distribute or copy this e-mail. Please notify the sender 
immediately
by e-mail if you have received this e-mail by mistake and delete this e-mail 
from your system. If you are not the intended recipient you are notified
that disclosing, copying, distributing or taking any action in reliance on the 
contents of this information is strictly prohibited.

Whilst reasonable care has been taken to avoid virus transmission, no 
responsibility for viruses is taken and it is your responsibility to carry out
such checks as you feel appropriate.

If this email contains a quote or offer to sell products, carry out work or 
perform services then our standard terms and conditions (which can be found at 
http://www.lutraconsulting.co.uk/downloads/Lutra%20Consulting%20Standard%20Terms%20and%20Conditions.pdf
 shall apply unless explicitly stated otherwise.

Saber Razmjooei and Peter Wells trading as Lutra Consulting.
___
Qgis-developer mailing list
Qgis-developer@lists.osgeo.org
http://lists.osgeo.org/mailman/listinfo/qgis-developer


Re: [Qgis-developer] v.generalize in Processing: wrong output projection

2014-10-19 Thread Andre Joost

Am 19.10.2014 09:31, schrieb Paolo Cavallini:

Hi all. Applying v.generalize through Processing on data with prj:

PROJCS[ED50_UTM_zone_30N,GEOGCS[GCS_European_1950,DATUM[D_European_1950,SPHEROID[International_1924,6378388,297]],PRIMEM[Greenwich,0],UNIT[Degree,0.017453292519943295]],PROJECTION[Transverse_Mercator],PARAMETER[latitude_of_origin,0],PARAMETER[central_meridian,-3],PARAMETER[scale_factor,0.9996],PARAMETER[false_easting,50],PARAMETER[false_northing,0],UNIT[Meter,1]]



generates an output with a wrong prj:

PROJCS[UTM_Zone_30_Northern_Hemisphere,GEOGCS[GCS_international,DATUM[D_unknown,SPHEROID[International_1924,6378388,297]],PRIMEM[Greenwich,0],UNIT[Degree,0.017453292519943295]],PROJECTION[Transverse_Mercator],PARAMETER[latitude_of_origin,0],PARAMETER[central_meridian,-3],PARAMETER[scale_factor,0.9996],PARAMETER[false_easting,50],PARAMETER[false_northing,0],UNIT[Meter,1]]



that is interpreted by QGIS as a custom projection (USER:17 -  *
SR generato (+proj=utm +zone=30 +ellps=intl +units=m +no_defs)).



The parameters are the same, so not really wrong. QGIS often does not 
recognize similar projections when the name does not fit.


The only thing missing is the +wgs84 parameter from EPSG:23030:

+proj=utm +zone=30 +ellps=intl +towgs84=-87,-98,-121,0,0,0,0 +units=m 
+no_defs


Those parameters are often ignored in shapefiles, and QGIS does not find 
the right EPSG code without them.


Greetings,
André Joost

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


Re: [Qgis-developer] Invisible shapefile

2014-10-19 Thread Richard Duivenvoorde
On 19-10-14 11:00, Saber Razmjooei wrote:
 There seems to be a problem with SAGA's shapefile writer/reader. See this:
 http://hub.qgis.org/issues/11007

I think in such cases it would be nice if the different issues are
updated to link to each other, so different issues/projects can benefit
from each others comments or data?

Regards,

Richard Duivenvoorde


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


[Qgis-developer] about the cmakelist.txt file in the project

2014-10-19 Thread 李杨
 i have a question about the qgis project oragnize. Is those CMakelists.txt
file is write by hand? Not generated by some software.

Is the process is like that? first developer write the cmakelist.txt file,
the other developer can use the cmakelist.txt file under CMAKE to configure
and generate project for different platform. then compile the whole
project. Is my statement right?

SO my question appears, If i need make some custom modification basing
qgis. Is my right process would be like that:   first write some similar
cmakelist.txt file for my custom qgis project. then using cmake to
generate, then build the project.

thanks.

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

[Qgis-developer] [QGIS 2.5.0 MASTER][Linux Mint 64-bit] - Missing Oracle Spatial icon?

2014-10-19 Thread João Gaspar
Hi guys,

I open the recent QGIS master and i don't find the Oracle Spatial icon.

In the Plugin Manager only appears the Oracle Raster in installed plugins.

Can anyone confirm this? Is the same for the other OS?

Regards
João
___
Qgis-developer mailing list
Qgis-developer@lists.osgeo.org
http://lists.osgeo.org/mailman/listinfo/qgis-developer

Re: [Qgis-developer] Invisible shapefile

2014-10-19 Thread Paolo Cavallini
Il 19/10/2014 12:20, Richard Duivenvoorde ha scritto:

 I think in such cases it would be nice if the different issues are
 updated to link to each other, so different issues/projects can benefit
 from each others comments or data?

not quite sure it's the same issue.
I'm investigating upstream (SAGA and GDAL).
Thanks.

-- 
Paolo Cavallini - www.faunalia.eu
Corsi QGIS e PostGIS: http://www.faunalia.eu/training.html
___
Qgis-developer mailing list
Qgis-developer@lists.osgeo.org
http://lists.osgeo.org/mailman/listinfo/qgis-developer


Re: [Qgis-developer] Please stop spamming commit logs!

2014-10-19 Thread Tim Sutton
Hi



On Mon, Oct 13, 2014 at 2:09 PM, Nyall Dawson nyall.daw...@gmail.com
wrote:


 On 13/10/2014 11:01 pm, Matthias Kuhn matthias.k...@gmx.ch wrote:
 
  Hi Jonathan,
 
  I don't think that this is the message that QGIS wants to spread. If it
  would be, we would do popups that ask you to sponsor for every new
  feature you created ;-)
 
  But as you state, sponsorship is a means to an end. As such it is a
  prerequisite for moving this software on and therefore it is good if
  users are aware of the fact, that this software was created by people
  and that they can only spend their time if they have a possibility to
  get the money they need for a living.
 
  If you ask me: a funded by is in a commit author's responsibility. He
  knows what he wrote that commit for. Be it for money, for fun, for his
  boss, somebody he loves or a university degree. If he thinks it is worth
  putting a note there for any reason - i.e. definitely not limited to
  monetary transactions - he should be able to do so. It does no harm, but
  may be a reward for his time or be part of a contract.
 
  The username next to a git commit is not the same thing. It can only
  tell who does the commit, but does not tell for what reason/who he does
 it.
 
  The only restriction I would put to this is that it must be placed at
  the end of the commit on a new line (for the sake of good readability).
 
  Regards,
  Matthias

 +1 . Can I request that the psc please make a final ruling about this
 issue so that we can close this discussion and all move on?


Sure - please raise the question (in a clear yes/no answerable form) to the
PSC mailing list for these type of queries.

Regards

Tim

 Nyall

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




-- 
--
Tim Sutton
Visit http://kartoza.com to find out about open source:
 * Desktop GIS programming services
 * Geospatial web development
* GIS Training
* Consulting Services
Skype: timlinux Irc: timlinux on #qgis at freenode.net
Tim is a member of the QGIS Project Steering Committee
---
Kartoza is a merger between Linfiniti and Afrispatial
___
Qgis-developer mailing list
Qgis-developer@lists.osgeo.org
http://lists.osgeo.org/mailman/listinfo/qgis-developer

Re: [Qgis-developer] Please stop spamming commit logs!

2014-10-19 Thread Tim Sutton
Hi

On Sun, Oct 19, 2014 at 7:49 PM, Tim Sutton t...@kartoza.com wrote:

 Hi



 On Mon, Oct 13, 2014 at 2:09 PM, Nyall Dawson nyall.daw...@gmail.com
 wrote:


  Regards,
  Matthias

 +1 . Can I request that the psc please make a final ruling about this
 issue so that we can close this discussion and all move on?


 Sure - please raise the question (in a clear yes/no answerable form) to
 the PSC mailing list for these type of queries.


That should be a general procedure for raising issues to the PSC anyway. I
will also rais in the next PSC meeting getting in place some system to keep
a better record of the votes we have taken.

Regards

Tim



 Regards

 Tim

 Nyall

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




 --

 --
 Tim Sutton
 Visit http://kartoza.com to find out about open source:
  * Desktop GIS programming services
  * Geospatial web development
 * GIS Training
 * Consulting Services
 Skype: timlinux Irc: timlinux on #qgis at freenode.net
 Tim is a member of the QGIS Project Steering Committee

 ---
 Kartoza is a merger between Linfiniti and Afrispatial




-- 
--
Tim Sutton
Visit http://kartoza.com to find out about open source:
 * Desktop GIS programming services
 * Geospatial web development
* GIS Training
* Consulting Services
Skype: timlinux Irc: timlinux on #qgis at freenode.net
Tim is a member of the QGIS Project Steering Committee
---
Kartoza is a merger between Linfiniti and Afrispatial
___
Qgis-developer mailing list
Qgis-developer@lists.osgeo.org
http://lists.osgeo.org/mailman/listinfo/qgis-developer

[Qgis-developer] Measure tool persistence.

2014-10-19 Thread G. Garibaldi
The measure tool onscreen markers are not persistent and are therefore 
not useful. Why have tools that have no useful function? I've complained 
about this before, filed a ticket and was argued down by a developer.


It is frustrating to try to contribute to a project when nobody wants to 
cooperate.




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


Re: [Qgis-developer] Measure tool persistence.

2014-10-19 Thread Nathan Woodrow
Hey,

Where is the ticket you opened?

Regards,
Nathan
On Oct 20, 2014 7:01 AM, G. Garibaldi digitalm...@cox.net wrote:

 The measure tool onscreen markers are not persistent and are therefore not
 useful. Why have tools that have no useful function? I've complained about
 this before, filed a ticket and was argued down by a developer.

 It is frustrating to try to contribute to a project when nobody wants to
 cooperate.



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

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

Re: [Qgis-developer] Measure tool persistence.

2014-10-19 Thread Tim Sutton
Hi

On Sun, Oct 19, 2014 at 9:51 PM, G. Garibaldi digitalm...@cox.net wrote:

 The measure tool onscreen markers are not persistent and are therefore not
 useful. Why have tools that have no useful function? I've complained about
 this before, filed a ticket and was argued down by a developer.

 It is frustrating to try to contribute to a project when nobody wants to
 cooperate.



I don't think it is fair to characterise QGIS as a project where nobody
wants to cooperate. People are busy, may have differing opinions to you,
may not have noticed your ticket etc. We are a community of people trying
our best to cooperate and sometimes we fail, but it certainly isn't through
a lack of desire to cooperate. My advice is keep trying (in a friendly way)
to get your request noticed, and if others don't always agree with your
ideas, don't take it personally.

Regards

Tim






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




-- 
--
Tim Sutton
Visit http://kartoza.com to find out about open source:
 * Desktop GIS programming services
 * Geospatial web development
* GIS Training
* Consulting Services
Skype: timlinux Irc: timlinux on #qgis at freenode.net
Tim is a member of the QGIS Project Steering Committee
---
Kartoza is a merger between Linfiniti and Afrispatial
___
Qgis-developer mailing list
Qgis-developer@lists.osgeo.org
http://lists.osgeo.org/mailman/listinfo/qgis-developer

Re: [Qgis-developer] about the cmakelist.txt file in the project

2014-10-19 Thread Tim Sutton
Hi

On Sun, Oct 19, 2014 at 12:36 PM, 李杨 gisyan...@gmail.com wrote:

  i have a question about the qgis project oragnize. Is those
 CMakelists.txt file is write by hand? Not generated by some software.


Correct - we generate CMakeLists.txt by hand and that saves us from
generating Makefiles by hand.



 Is the process is like that? first developer write the cmakelist.txt file,
 the other developer can use the cmakelist.txt file under CMAKE to configure
 and generate project for different platform. then compile the whole
 project. Is my statement right?


Yes.


 SO my question appears, If i need make some custom modification basing
 qgis. Is my right process would be like that:   first write some similar
 cmakelist.txt file for my custom qgis project. then using cmake to
 generate, then build the project.


Yes. And if you need to build a custom standalone app that links to QGIS,
you can use the handy cmake/FindQGIS.cmake to let your build process find
QGIS for you.

Regards

Tim


 thanks.

 --
 Yang Li




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




-- 
--
Tim Sutton
Visit http://kartoza.com to find out about open source:
 * Desktop GIS programming services
 * Geospatial web development
* GIS Training
* Consulting Services
Skype: timlinux Irc: timlinux on #qgis at freenode.net
Tim is a member of the QGIS Project Steering Committee
---
Kartoza is a merger between Linfiniti and Afrispatial
___
Qgis-developer mailing list
Qgis-developer@lists.osgeo.org
http://lists.osgeo.org/mailman/listinfo/qgis-developer