Re: [Qgis-user] QGIS doesn't start anymore: undefined symbol: pj_ctx_alloc

2012-11-15 Thread Andre Joost

Am 15.11.12 08:35, schrieb Luís de Sousa:

Dear all,

QGis stopped running in my Ubuntu 12.04 64 bits. Launching it from dash
nothing happens, no splash screen, no window, no error messages. Launching
it from the command line I get this:

$ qgis
/usr/bin/qgis.bin: symbol lookup error: /usr/lib/libgdal.so.1: undefined
symbol: pj_ctx_alloc

What is it? Again issues with GDAL? Please help, this is really critical to
me.


What Qgis version were you running? And does gdalinfo still run?

Greetings,
André Joost


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


Re: [Qgis-user] QGIS doesn't start anymore: undefined symbol: pj_ctx_alloc

2012-11-15 Thread Luís de Sousa
Hi André,

I was running QGis 1.8, exactly which release I can't say anymore (it
doesn't run).

But I am still getting the same error when I run qgis. Apart from that,
uDig, Mapserv and PyWPS are also not running at this stage. Whatever
happened to python-gdal it totally messed up my system.

I have downgraded python-gdal from 1.9.3 to 1.7.3 as explained in this old
thread:

http://osgeo-org.1560.n6.nabble.com/Problems-after-upgrading-to-qgis-1-8-solved-by-downgrading-python-gdal-tp4982032.html

gdalinfo seems to work now, but none of the programs that depend on it are
able to run.

Any more insight would be welcome. Thank you.



--
View this message in context: 
http://osgeo-org.1560.n6.nabble.com/QGIS-doesn-t-start-anymore-undefined-symbol-pj-ctx-alloc-tp5016501p5016512.html
Sent from the Quantum GIS - User mailing list archive at Nabble.com.
___
Qgis-user mailing list
Qgis-user@lists.osgeo.org
http://lists.osgeo.org/mailman/listinfo/qgis-user


Re: [Qgis-user] QGIS doesn't start anymore: undefined symbol: pj_ctx_alloc

2012-11-15 Thread Luís de Sousa
Hello again,

A correction here, I run gdalinfo in a remote server, not in my system. In
my system I get the same error as with qgis:

$ ogr2ogr
ogr2ogr: symbol lookup error: /usr/lib/libgdal.so.1: undefined symbol:
pj_ctx_alloc
$ gdalinfo
gdalinfo: symbol lookup error: /usr/lib/libgdal.so.1: undefined symbol:
pj_ctx_alloc

I'm also getting this error in the Apache error log when I invoke Mapserver.
I opened a thread in the GDAL list:

http://osgeo-org.1560.n6.nabble.com/Upgrade-to-Python-GDAL-1-9-3-messed-up-my-system-td5016517.html

Thank you.



--
View this message in context: 
http://osgeo-org.1560.n6.nabble.com/QGIS-doesn-t-start-anymore-undefined-symbol-pj-ctx-alloc-tp5016501p5016519.html
Sent from the Quantum GIS - User mailing list archive at Nabble.com.
___
Qgis-user mailing list
Qgis-user@lists.osgeo.org
http://lists.osgeo.org/mailman/listinfo/qgis-user


Re: [Qgis-user] How to compile gdal with ESRI FileGDB

2012-11-15 Thread Johan Nilsson
Thanks very much Eric :)
I have read the instuctions, and
tar zxvf FileGDB_API_1_2-32.tar.gz went well but I'm stuck on point 4 in
the fist part of you instruction to make a sample to test the driver:
~/Desktop/gdal-mod/FileGDB_API/samples$ make
It spot out a lot of thing complaining about 'undefiened reference to'...
and it ends like:
../../lib/libFileGDBAPI.so: undefined reference to `PathFileExistsW(wchar_t
const*)'
../../lib/libFileGDBAPI.so: undefined reference to
`PathFindExtensionW(wchar_t const*)'
collect2: ld returned 1 exit status
make[1]: *** [../bin/Domains] Error 1
make[1]: Leaving directory
`/home/a/Desktop/gdal-mod/FileGDB_API/samples/Domains'
make: *** [Domains] Error 2
Joni@Intel:~/Desktop/gdal-mod/FileGDB_API/samples$

I tried to ignore the errors above, but when I move to *bin* it was empty
and nothing happend:
~/Desktop/gdal-mod/FileGDB_API/samples/bin$ ./Querying
bash: ./Querying: No such file or directory
I checked with ls -all and *bin* was empty.

Cheers and thanks
/Johan



2012/11/14 Eric Goddard egoddard1...@gmail.com

 Below are the steps I use to add File Geodatabase support to gdal. This
 worked on Ubuntu 12.04 64-bit, but it doesn't use the deb source packages.
 Since you have a 32-bit ubuntu install, you need to download the 32-bit
 version of the FileGDB API. I tried to answer your questions as they come
 up in the steps I list below, so you may want to read through the whole
 thing before starting. Sorry for the length, but I hope it helps!

 In terminal:

 1. Change directory to wherever you downloaded the FileGDBAPI: *cd
 path/to/FileGDBAPI_download*

 2. extract the archive:* tar zxvf FileGDB_API_1_2-32.tar.gz* NOTE: Since
 you are using 32-bit Ubuntu, you need to download the 32-bit FileGDB API.

 3.You need to build the samples to make sure the API works. Change to the
 FileGDB_API samples folder: *cd FileGDB_API/samples*

 4. type *make*

 5. Run a sample to make sure it works. Change directory to the bin folder
 inside samples: *cd bin *, and then type *./Querying*. You'll get a bunch
 of text in terminal, just make sure it doesn't spit out any errors.

 6. If the sample runs successfully, you have a working FileGDB API and you
 are ready to compile GDAL. I like to move the FileGDB API to a better
 location than the downloads directory, but it is up to you. If you choose
 to move it, you can use the paths listed below. If you use your own
 location, change the path in the commands below to whatever you used. *sudo
 mv your location/FileGDB_API /usr/local/*

 7. Create a LD configuration file so that gdal is able to find the FGDB
 libraries: *sudo echo /usr/local/FileGDB_API/lib 
 etc/ld.so.conf.d/fgdb.conf *

 An explanation of ld is below.

 8. run ldconfig to update the linked libraries: *sudo ldconfig*

 You're now ready to download and configure gdal.


 1. Download gdal from http://download.osgeo.org/gdal/gdal-1.9.2.tar.gz
 2. Extract the contents of the gdal archive: *tar zxvf gdal-1.9.2.tar.gz*

 3. Change to the gdal directory: *cd gdal-1.9.2*

 4. Now gdal needs to be configured. Your configure line may be different
 from the one below depending on the options you want included, but the
 important line to include is --with-fgdb=/usr/local/FileGDB_API. This is my
 configure line on my system: * ./configure --with-geos=yes --with-sqlite3
 --with-python --with-spatialite --with-fgdb=/usr/local/FileGDB_API
 --with-postgres --with-odbc --with-libkml=yes --with-curl=yes
 --with-mrsid=/usr/local/MrSID_SDK/Raster_DSDK
 --with-mrsid_lidar=/usr/local/MrSID_SDK/Lidar_DSDK
 --with-openjpeg=/usr/include*

 The --with statements let the configuration script know what additional
 modules you want to be included in the compile. When you install packages,
 such as geos, from the repos the libraries are put in paths that ld (which
 is a utility that links libraries so that other applications are able to
 find them) knows about. When you compile by hand the general practice is to
 compile to /usr/local, which sometimes ld doesn't know about by default.
 You let ld know about additional paths by creating a configuration file in
 /etc/ld.so.conf.d/ that contains the path of your custom compiled
 libraries.

 To compile GDAL with the options you want, your line might look something
 like this:

 *./configure --with-geos=yes --with-sqlite3 --with-python
 --with-spatialite --with-fgdb=/usr/local/FileGDB_API --with-postgres
 --with-odbc *

 After configure runs, it will give you a summary that indicates what it
 was able to find. Check to make sure that there is a 'yes' beside the
 options you want. If there is a no beside something you want to include,
 you may need to scroll through the output and find the error to see what
 went wrong.


 5. Now you can run make and make install. *sudo make*. When that
 finishes, run *sudo make install*.

 6. One more step: you need to let ld know about the gdal libraries. Since
 we didn't specify a different path, the configure line above puts 

Re: [Qgis-user] [Qgis-developer] Lizmap - new version released

2012-11-15 Thread G. Allegri
Great work Michael!

giovanni

2012/11/15 kimaidou kimai...@gmail.com

 Hi all,

 A new version of Lizmap Web Client and the related QGIS plugin has been
 released yesterday, with these new features:

 * responsive design : Lizmap fits well on tablets and new smart-phone
 screens
 * rich html pop-up with configurable templates. You can write different
 pop-up templates with the plugin for each layers. You can select which
 layers will have a popup.
 * media management : you can use files stored in a media folder in the
 same directory as the QGIS project, and use these files in pop-ups and in
 the information link for each layer. For example, you can have a pop-up
 displaying the content of a different HTML file for each feature, or
 display images in the pop-up.

 Full change log here :

 http://hub.qgis.org/wiki/lizmapwebclient/Changelog_en#Version-240-14-november-2012

 We will follow QGIS Server evolutions (and help developing some features)
 to use QGIS internal solutions (e.g. for popup templates), but in between
 we are trying to bring some cool features in Lizmap, as a proof of concept.

 Lizmap has already these features :
 * automatic tile caching system, not OGC compliante, but very handy : no
 configuration file, only one checkbox to activate with the plugin. And it
 supports metatiling !
 * responsive design and ability to change the interface easily with
 theming (CSS + html templates)
 * multi-project and multi repository (folders containing projects)
 * groups, users and rights management which help controlling who can view
 which maps or use your WMS services
 * simple publication system from you computer to the server with the plugin
 * external base layers : OpenStreetMap, Google (Sat, terrain, streets)
 * Transform QGIS groups of layers into one single layer in the web map.

 We have many more ideas to improve Lizmap, and are looking for some
 financial support to help us developing the following features :
 * layer data edition : geometry and attributes, using the new WFS-T feature
 * printing
 * search module, using WFS
 * display the layer attribute table
 etc.

 Lizmap demo site :
 http://demo.3liz.com/lizmap

 Full documentation :
 http://hub.qgis.org/projects/lizmapwebclient/wiki
 http://hub.qgis.org/projects/lizmapplugin/wiki/

 Regards

 Michael


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


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


Re: [Qgis-user] qgis and Large Format Print

2012-11-15 Thread haubourg
I confirm issue on both 1.8 and master. 
It is related to these tickets:

http://hub.qgis.org/issues/3687

http://hub.qgis.org/issues/5840

http://hub.qgis.org/issues/4821

http://hub.qgis.org/issues/6498

I suppose we have problem with large memory usage on 32 bits platforms if it
exceeds memory allowed. If confirmed, maybe this should be solved by using
clustered temporary files so that it never exceeds max allowed memory in OS.
All this need further investigations. I'm ready to fund this but that would
help a lot if somebody confirm that this is a memory issue.. I don't know
how to monitor this by myself. 
Régis



--
View this message in context: 
http://osgeo-org.1560.n6.nabble.com/qgis-and-Large-Format-Print-tp5016300p5016544.html
Sent from the Quantum GIS - User mailing list archive at Nabble.com.
___
Qgis-user mailing list
Qgis-user@lists.osgeo.org
http://lists.osgeo.org/mailman/listinfo/qgis-user


Re: [Qgis-user] Problem merging rasters

2012-11-15 Thread Andy Harfoot




If you compare the path to the images shown in the properties and in
the error reports from GDAL, you can see that the accented letter  in
the folder name is missing from the latter - this suggests to me that
GDAL is having a problem accessing folders with that character - try
renaming the folder and running the command again.

Andy

Gerardo Jimenez wrote:

  
  Hi
  
  
  I am
trying to merge two raster dems. The project, the layers are all on the
same crs (EPSG 4326) This is what I have:
  
  
  
  ERROR 4:
`C:/Anita_Tepoztln/Rasters/e142.tif' does not exist in the file system,
  and is not recognised as a
supported dataset name.
  
  
  ERROR 4:
`C:/Anita_Tepoztln/Rasters/e145.tif' does not exist in the file system,
  and is not recognised as a
supported dataset name.
  
  
  Traceback (most recent call
last):
  
  
  File "C:\PROGRA~2\Quantum GIS
Lisboa\bin\gdal_merge.py", line 509, in
  sys.exit(main())
  File "C:\PROGRA~2\Quantum GIS
Lisboa\bin\gdal_merge.py", line 392, in main
  ulx = file_infos[0].ulx
  IndexError: list index out of
range
  
  
  I am able to load both raster
and check their propertieies, for instance
  
  
  Driver:
GTiff/GeoTIFF Files: C:\Anita_Tepoztln\Rasters\e145.tif
C:\Anita_Tepoztln\Rasters\e145.tif.aux.xml Size is 7200, 3600
Coordinate System is: GEOGCS["WGS 84", DATUM["WGS_1984", SPHEROID["WGS
84",6378137,298.257223563, AUTHORITY["EPSG","7030"]],
AUTHORITY["EPSG","6326"]], PRIMEM["Greenwich",0],
UNIT["degree",0.0174532925199433], AUTHORITY["EPSG","4326"]]
  
  
  I
do not know waht is wrong, any ideas are welcome
  
  
  I
am using Lisboa standallone installer in win 7 64 16gb of RAM
  
  
  
  Gerardo Jimnez Delgado
  Instituto de
Investigaciones Antropolgicas
  Universidad Nacional
Autnoma de Mxico
  Ciudad Universitaria s/n
  Coyoacan 04510
Mexico City
  Mexico
56 22 95 16
  
  

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



-- 
Andy Harfoot

GeoData Institute
University of Southampton
Southampton
SO17 1BJ

Tel:  +44 (0)23 8059 2719
Fax:  +44 (0)23 8059 2849

www.geodata.soton.ac.uk



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


Re: [Qgis-user] qgis and Large Format Print

2012-11-15 Thread G. Allegri
Ok, maybe that's why I'm not facing the issue, being on a 64 bit machine.
On Windows I use naively the Task Manager's Resource Monitor to see the
memeory usage of my programs.
On Linux I use top [1]

giovanni

[1] http://linux.about.com/od/commands/l/blcmdl1_top.htm

2012/11/15 haubourg regis.haubo...@eau-adour-garonne.fr

 I confirm issue on both 1.8 and master.
 It is related to these tickets:

 http://hub.qgis.org/issues/3687

 http://hub.qgis.org/issues/5840

 http://hub.qgis.org/issues/4821

 http://hub.qgis.org/issues/6498

 I suppose we have problem with large memory usage on 32 bits platforms if
 it
 exceeds memory allowed. If confirmed, maybe this should be solved by using
 clustered temporary files so that it never exceeds max allowed memory in
 OS.
 All this need further investigations. I'm ready to fund this but that would
 help a lot if somebody confirm that this is a memory issue.. I don't know
 how to monitor this by myself.
 Régis



 --
 View this message in context:
 http://osgeo-org.1560.n6.nabble.com/qgis-and-Large-Format-Print-tp5016300p5016544.html
 Sent from the Quantum GIS - User mailing list archive at Nabble.com.
 ___
 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] qgis and Large Format Print

2012-11-15 Thread Marco Hugentobler

Hi Régis

I can confirm it is a memory issue and should work with 64bit systems 
(note: on windows you need a real 64bit build, a 32bit build will have 
the memory problems even if it runs on 64bit hardware).


Regards,
Marco

On 15.11.2012 10:41, haubourg wrote:

I confirm issue on both 1.8 and master.
It is related to these tickets:

http://hub.qgis.org/issues/3687

http://hub.qgis.org/issues/5840

http://hub.qgis.org/issues/4821

http://hub.qgis.org/issues/6498

I suppose we have problem with large memory usage on 32 bits platforms if it
exceeds memory allowed. If confirmed, maybe this should be solved by using
clustered temporary files so that it never exceeds max allowed memory in OS.
All this need further investigations. I'm ready to fund this but that would
help a lot if somebody confirm that this is a memory issue.. I don't know
how to monitor this by myself.
Régis



--
View this message in context: 
http://osgeo-org.1560.n6.nabble.com/qgis-and-Large-Format-Print-tp5016300p5016544.html
Sent from the Quantum GIS - User mailing list archive at Nabble.com.
___
Qgis-user mailing list
Qgis-user@lists.osgeo.org
http://lists.osgeo.org/mailman/listinfo/qgis-user



--
Dr. Marco Hugentobler
Sourcepole -  Linux  Open Source Solutions
Weberstrasse 5, CH-8004 Zürich, Switzerland
marco.hugentob...@sourcepole.ch http://www.sourcepole.ch
Technical Advisor QGIS Project Steering Committee

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


Re: [Qgis-user] qgis and Large Format Print

2012-11-15 Thread G. Allegri
 I can confirm it is a memory issue and should work with 64bit systems
 (note: on windows you need a real 64bit build, a 32bit build will have the
 memory problems even if it runs on 64bit hardware).


It works with my *real* 64 bit Windows :)

giovanni



 Regards,
 Marco

 On 15.11.2012 10:41, haubourg wrote:

 I confirm issue on both 1.8 and master.
 It is related to these tickets:

 http://hub.qgis.org/issues/**3687 http://hub.qgis.org/issues/3687

 http://hub.qgis.org/issues/**5840 http://hub.qgis.org/issues/5840

 http://hub.qgis.org/issues/**4821 http://hub.qgis.org/issues/4821

 http://hub.qgis.org/issues/**6498 http://hub.qgis.org/issues/6498

 I suppose we have problem with large memory usage on 32 bits platforms if
 it
 exceeds memory allowed. If confirmed, maybe this should be solved by using
 clustered temporary files so that it never exceeds max allowed memory in
 OS.
 All this need further investigations. I'm ready to fund this but that
 would
 help a lot if somebody confirm that this is a memory issue.. I don't know
 how to monitor this by myself.
 Régis



 --
 View this message in context: http://osgeo-org.1560.n6.**
 nabble.com/qgis-and-Large-**Format-Print-**tp5016300p5016544.htmlhttp://osgeo-org.1560.n6.nabble.com/qgis-and-Large-Format-Print-tp5016300p5016544.html
 Sent from the Quantum GIS - User mailing list archive at Nabble.com.
 __**_
 Qgis-user mailing list
 Qgis-user@lists.osgeo.org
 http://lists.osgeo.org/**mailman/listinfo/qgis-userhttp://lists.osgeo.org/mailman/listinfo/qgis-user



 --
 Dr. Marco Hugentobler
 Sourcepole -  Linux  Open Source Solutions
 Weberstrasse 5, CH-8004 Zürich, Switzerland
 marco.hugentobler@sourcepole.**ch marco.hugentob...@sourcepole.ch
 http://www.sourcepole.ch
 Technical Advisor QGIS Project Steering Committee

 __**_
 Qgis-user mailing list
 Qgis-user@lists.osgeo.org
 http://lists.osgeo.org/**mailman/listinfo/qgis-userhttp://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] QGIS doesn't start anymore: undefined symbol: pj_ctx_alloc

2012-11-15 Thread Andre Joost

Am 15.11.12 09:27, schrieb Luís de Sousa:

Hi André,

I was running QGis 1.8, exactly which release I can't say anymore (it
doesn't run).

But I am still getting the same error when I run qgis. Apart from that,
uDig, Mapserv and PyWPS are also not running at this stage. Whatever
happened to python-gdal it totally messed up my system.

I have downgraded python-gdal from 1.9.3 to 1.7.3 as explained in this old
thread:



I'm afraid I can't help you very much, but Gdal running with Qgis 1.8 is 
Version 1.9.1. Might be that 1.7.3 ist too old for current Qgis.


HTH,
André Joost


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


Re: [Qgis-user] Problem merging rasters

2012-11-15 Thread Andre Joost

Hi,
confirmed here, and opened a ticket for it:
http://trac.osgeo.org/gdal/ticket/4895

Seems it does not affect all Gdal tools.

Greetings,
André Joost

Am 15.11.12 10:48, schrieb Andy Harfoot:

If you compare the path to the images shown in the properties and in the error
reports from GDAL, you can see that the accented letter á in the folder name is
missing from the latter - this suggests to me that GDAL is having a problem
accessing folders with that character - try renaming the folder and running the
command again.

Andy

Gerardo Jimenez wrote:

 Hi

 I am trying to merge two raster dems. The project, the layers are all on the
 same crs (EPSG 4326) This is what I have:

 ERROR 4: `C:/Anita_Tepoztln/Rasters/e142.tif' does not exist in the file 
system,
 and is not recognised as a supported dataset name.

 ERROR 4: `C:/Anita_Tepoztln/Rasters/e145.tif' does not exist in the file 
system,
 and is not recognised as a supported dataset name.

 Traceback (most recent call last):

 File C:\PROGRA~2\Quantum GIS Lisboa\bin\gdal_merge.py, line 509, in
 sys.exit(main())
 File C:\PROGRA~2\Quantum GIS Lisboa\bin\gdal_merge.py, line 392, in main
 ulx = file_infos[0].ulx
 IndexError: list index out of range

 I am able to load both raster and check their propertieies, for instance

 Driver: GTiff/GeoTIFF Files: C:\Anita_Tepoztlán\Rasters\e145.tif
 C:\Anita_Tepoztlán\Rasters\e145.tif.aux.xml Size is 7200, 3600 Coordinate
 System is: GEOGCS[WGS 84, DATUM[WGS_1984, SPHEROID[WGS
 84,6378137,298.257223563, AUTHORITY[EPSG,7030]],
 AUTHORITY[EPSG,6326]], PRIMEM[Greenwich,0],
 UNIT[degree,0.0174532925199433], AUTHORITY[EPSG,4326]]

 I do not know waht is wrong, any ideas are welcome

 I am using Lisboa standallone installer in win 7 64 16gb of RAM


 Gerardo Jiménez Delgado
 Instituto de Investigaciones Antropológicas
 Universidad Nacional Autónoma de México
 Ciudad Universitaria s/n
 Coyoacan 04510 Mexico City
 Mexico 56 22 95 16
 


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




--
Andy Harfoot

GeoData Institute
University of Southampton
Southampton
SO17 1BJ

Tel:  +44 (0)23 8059 2719
Fax:  +44 (0)23 8059 2849

www.geodata.soton.ac.uk




___
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] QGIS doesn't start anymore: undefined symbol: pj_ctx_alloc

2012-11-15 Thread Etienne Tourigny
proj.4 was recently upgraded to 4.8.0 in the ubuntugis-unstable -
perhaps that is the cause? The error you get is related to proj.4
library.

Etienne

On Thu, Nov 15, 2012 at 5:35 AM, Luís de Sousa
luis.a.de.so...@gmail.com wrote:
 Dear all,

 QGis stopped running in my Ubuntu 12.04 64 bits. Launching it from dash
 nothing happens, no splash screen, no window, no error messages. Launching
 it from the command line I get this:

 $ qgis
 /usr/bin/qgis.bin: symbol lookup error: /usr/lib/libgdal.so.1: undefined
 symbol: pj_ctx_alloc

 What is it? Again issues with GDAL? Please help, this is really critical to
 me.

 Thank you.



 --
 View this message in context: 
 http://osgeo-org.1560.n6.nabble.com/QGIS-doesn-t-start-anymore-undefined-symbol-pj-ctx-alloc-tp5016501.html
 Sent from the Quantum GIS - User mailing list archive at Nabble.com.
 ___
 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] transparent labels

2012-11-15 Thread Pedro Venâncio
Hi,

This was an old thread, but this question came to me now. It's possible to 
apply transparency to the layer's labels?

The transparency that is applied to the layer is not 'replicated' in its label 
and I can not find a way to apply transparency to the labels (on QGIS 1.8).


Thank you very much!

Best regards,
Pedro




Tue Oct 20 14:10:14 EDT 2009


I'm working on a map of selected U.S. DMA areas and would like to show
labels on the DMA regions. However, I also need all the county names
to be readable when the map is rendered. Can I make a layer's labels
be transparent?

There is a transparency option in the data-defined style settings, but
that would seem to apply to layer objects and not labels. So far I've
rendered map and labels separately, and composited them in an external
image editor to get the transparency effect. These are large image
files and my system is not exactly top-of-the-line, so I'm looking for
a better technique : )

Geofrey Sanders
Weather Call Customer Care
geofrey at weathercall.net
voicemail: 1 (800) 260-6695
___
Qgis-user mailing list
Qgis-user@lists.osgeo.org
http://lists.osgeo.org/mailman/listinfo/qgis-user


Re: [Qgis-user] qgis and Large Format Print

2012-11-15 Thread Paolo Cavallini
Il 15/11/2012 11:52, G. Allegri ha scritto:

 I can confirm it is a memory issue and should work with 64bit
 systems (note: on windows you need a real 64bit build, a 32bit
 build will have the memory problems even if it runs on 64bit
 hardware).


 It works with my *real* 64 bit Windows :)

Hi.
You mean you have a qgis compiled on win @ 64 bit?
Where did you get it from?

Marco: any hope to fix it also on 32 bit, maybe by swapping to disk, or
other?
Some resources may be available for this.

All the best.

-- 
Paolo Cavallini - Faunalia
www.faunalia.eu
Full contact details at www.faunalia.eu/pc
Nuovi corsi QGIS e PostGIS: http://www.faunalia.it/calendario

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


Re: [Qgis-user] QGIS doesn't start anymore: undefined symbol: pj_ctx_alloc

2012-11-15 Thread Luís de Sousa
Hi Etienne,

Assuming this is a problem with proj, what would you suggest me to do?

Thank you.



--
View this message in context: 
http://osgeo-org.1560.n6.nabble.com/QGIS-doesn-t-start-anymore-undefined-symbol-pj-ctx-alloc-tp5016501p5016608.html
Sent from the Quantum GIS - User mailing list archive at Nabble.com.
___
Qgis-user mailing list
Qgis-user@lists.osgeo.org
http://lists.osgeo.org/mailman/listinfo/qgis-user


Re: [Qgis-user] qgis and Large Format Print

2012-11-15 Thread G. Allegri


  Hi.
 You mean you have a qgis compiled on win @ 64 bit?
 Where did you get it from?


Ops, sorry, I meant Linux 64 bit.
Windows bit would require to compile all the dependencies as 64 bit!



 Marco: any hope to fix it also on 32 bit, maybe by swapping to disk, or
 other?
 Some resources may be available for this.

 All the best.

 --
 Paolo Cavallini - Faunaliawww.faunalia.eu
 Full contact details at www.faunalia.eu/pc
 Nuovi corsi QGIS e PostGIS: http://www.faunalia.it/calendario


 ___
 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] transparent labels

2012-11-15 Thread Andreas Neumann
Hi Pedro,

This is possible in QGIS master - so please either wait for QGIS 2.0 or
install QGIS master if you need this feature.

Andreas

Am 15.11.2012 13:59, schrieb Pedro Venâncio:
 Hi,
 
 This was an old thread, but this question came to me now. It's possible to 
 apply transparency to the layer's labels?
 
 The transparency that is applied to the layer is not 'replicated' in its 
 label and I can not find a way to apply transparency to the labels (on QGIS 
 1.8).
 
 
 Thank you very much!
 
 Best regards,
 Pedro
 
 
 
 
 Tue Oct 20 14:10:14 EDT 2009


 I'm working on a map of selected U.S. DMA areas and would like to show
 labels on the DMA regions. However, I also need all the county names
 to be readable when the map is rendered. Can I make a layer's labels
 be transparent?

 There is a transparency option in the data-defined style settings, but
 that would seem to apply to layer objects and not labels. So far I've
 rendered map and labels separately, and composited them in an external
 image editor to get the transparency effect. These are large image
 files and my system is not exactly top-of-the-line, so I'm looking for
 a better technique : )

 Geofrey Sanders
 Weather Call Customer Care
 geofrey at weathercall.net
 voicemail: 1 (800) 260-6695
 ___
 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] How to compile gdal with ESRI FileGDB

2012-11-15 Thread Eric Goddard
Hmmm, I didn't get any errors like that when I installed so I'm not sure
what could be causing it. Do you have the build-essential package installed
that provides the necessary compile tools?


On Thu, Nov 15, 2012 at 3:14 AM, Johan Nilsson joni8...@gmail.com wrote:

 Thanks very much Eric :)
 I have read the instuctions, and
 tar zxvf FileGDB_API_1_2-32.tar.gz went well but I'm stuck on point 4 in
 the fist part of you instruction to make a sample to test the driver:
 ~/Desktop/gdal-mod/FileGDB_API/samples$ make
 It spot out a lot of thing complaining about 'undefiened reference to'...
 and it ends like:
 ../../lib/libFileGDBAPI.so: undefined reference to
 `PathFileExistsW(wchar_t const*)'
 ../../lib/libFileGDBAPI.so: undefined reference to
 `PathFindExtensionW(wchar_t const*)'
 collect2: ld returned 1 exit status
 make[1]: *** [../bin/Domains] Error 1
 make[1]: Leaving directory
 `/home/a/Desktop/gdal-mod/FileGDB_API/samples/Domains'
 make: *** [Domains] Error 2
 Joni@Intel:~/Desktop/gdal-mod/FileGDB_API/samples$

 I tried to ignore the errors above, but when I move to *bin* it was empty
 and nothing happend:
 ~/Desktop/gdal-mod/FileGDB_API/samples/bin$ ./Querying
 bash: ./Querying: No such file or directory
 I checked with ls -all and *bin* was empty.

 Cheers and thanks
 /Johan




 2012/11/14 Eric Goddard egoddard1...@gmail.com

 Below are the steps I use to add File Geodatabase support to gdal. This
 worked on Ubuntu 12.04 64-bit, but it doesn't use the deb source packages.
 Since you have a 32-bit ubuntu install, you need to download the 32-bit
 version of the FileGDB API. I tried to answer your questions as they come
 up in the steps I list below, so you may want to read through the whole
 thing before starting. Sorry for the length, but I hope it helps!

 In terminal:

 1. Change directory to wherever you downloaded the FileGDBAPI: *cd
 path/to/FileGDBAPI_download*

 2. extract the archive:* tar zxvf FileGDB_API_1_2-32.tar.gz* NOTE: Since
 you are using 32-bit Ubuntu, you need to download the 32-bit FileGDB API.

 3.You need to build the samples to make sure the API works. Change to the
 FileGDB_API samples folder: *cd FileGDB_API/samples*

 4. type *make*

 5. Run a sample to make sure it works. Change directory to the bin folder
 inside samples: *cd bin *, and then type *./Querying*. You'll get a
 bunch of text in terminal, just make sure it doesn't spit out any errors.

 6. If the sample runs successfully, you have a working FileGDB API and
 you are ready to compile GDAL. I like to move the FileGDB API to a better
 location than the downloads directory, but it is up to you. If you choose
 to move it, you can use the paths listed below. If you use your own
 location, change the path in the commands below to whatever you used. *sudo
 mv your location/FileGDB_API /usr/local/*

 7. Create a LD configuration file so that gdal is able to find the FGDB
 libraries: *sudo echo /usr/local/FileGDB_API/lib 
 etc/ld.so.conf.d/fgdb.conf *

 An explanation of ld is below.

 8. run ldconfig to update the linked libraries: *sudo ldconfig*

 You're now ready to download and configure gdal.


 1. Download gdal from http://download.osgeo.org/gdal/gdal-1.9.2.tar.gz
 2. Extract the contents of the gdal archive: *tar zxvf gdal-1.9.2.tar.gz*

 3. Change to the gdal directory: *cd gdal-1.9.2*

 4. Now gdal needs to be configured. Your configure line may be different
 from the one below depending on the options you want included, but the
 important line to include is --with-fgdb=/usr/local/FileGDB_API. This is my
 configure line on my system: * ./configure --with-geos=yes
 --with-sqlite3 --with-python --with-spatialite
 --with-fgdb=/usr/local/FileGDB_API --with-postgres --with-odbc
 --with-libkml=yes --with-curl=yes
 --with-mrsid=/usr/local/MrSID_SDK/Raster_DSDK
 --with-mrsid_lidar=/usr/local/MrSID_SDK/Lidar_DSDK
 --with-openjpeg=/usr/include*

 The --with statements let the configuration script know what additional
 modules you want to be included in the compile. When you install packages,
 such as geos, from the repos the libraries are put in paths that ld (which
 is a utility that links libraries so that other applications are able to
 find them) knows about. When you compile by hand the general practice is to
 compile to /usr/local, which sometimes ld doesn't know about by default.
 You let ld know about additional paths by creating a configuration file in
 /etc/ld.so.conf.d/ that contains the path of your custom compiled
 libraries.

 To compile GDAL with the options you want, your line might look something
 like this:

 *./configure --with-geos=yes --with-sqlite3 --with-python
 --with-spatialite --with-fgdb=/usr/local/FileGDB_API --with-postgres
 --with-odbc *

 After configure runs, it will give you a summary that indicates what it
 was able to find. Check to make sure that there is a 'yes' beside the
 options you want. If there is a no beside something you want to include,
 you may need to scroll through the 

Re: [Qgis-user] Problem merging rasters

2012-11-15 Thread Gerardo Jimenez
Thanks any everyone for their help. As André  and Andy the accented letter in 
the folder name was the culprit. As soon as I changed to a non accented 
character all worked as it suposed to be ( and pretty fast!)
Thanks every one, again, for your time in solving this issue

Gerardo Jiménez Delgado
Instituto de Investigaciones Antropológicas
Universidad Nacional Autónoma de México
Ciudad Universitaria s/n
Coyoacan 04510
Mexico City
Mexico

56 22 95 16

 To: qgis-user@lists.osgeo.org
 From: andre+jo...@nurfuerspam.de
 Date: Thu, 15 Nov 2012 12:42:04 +0100
 Subject: Re: [Qgis-user] Problem merging rasters
 
 Hi,
 confirmed here, and opened a ticket for it:
 http://trac.osgeo.org/gdal/ticket/4895
 
 Seems it does not affect all Gdal tools.
 
 Greetings,
 André Joost
 
 Am 15.11.12 10:48, schrieb Andy Harfoot:
  If you compare the path to the images shown in the properties and in the 
  error
  reports from GDAL, you can see that the accented letter á in the folder 
  name is
  missing from the latter - this suggests to me that GDAL is having a problem
  accessing folders with that character - try renaming the folder and running 
  the
  command again.
 
  Andy
 
  Gerardo Jimenez wrote:
   Hi
 
   I am trying to merge two raster dems. The project, the layers are all on 
  the
   same crs (EPSG 4326) This is what I have:
 
   ERROR 4: `C:/Anita_Tepoztln/Rasters/e142.tif' does not exist in the file 
  system,
   and is not recognised as a supported dataset name.
 
   ERROR 4: `C:/Anita_Tepoztln/Rasters/e145.tif' does not exist in the file 
  system,
   and is not recognised as a supported dataset name.
 
   Traceback (most recent call last):
 
   File C:\PROGRA~2\Quantum GIS Lisboa\bin\gdal_merge.py, line 509, in
   sys.exit(main())
   File C:\PROGRA~2\Quantum GIS Lisboa\bin\gdal_merge.py, line 392, in main
   ulx = file_infos[0].ulx
   IndexError: list index out of range
 
   I am able to load both raster and check their propertieies, for instance
 
   Driver: GTiff/GeoTIFF Files: C:\Anita_Tepoztlán\Rasters\e145.tif
   C:\Anita_Tepoztlán\Rasters\e145.tif.aux.xml Size is 7200, 3600 Coordinate
   System is: GEOGCS[WGS 84, DATUM[WGS_1984, SPHEROID[WGS
   84,6378137,298.257223563, AUTHORITY[EPSG,7030]],
   AUTHORITY[EPSG,6326]], PRIMEM[Greenwich,0],
   UNIT[degree,0.0174532925199433], AUTHORITY[EPSG,4326]]
 
   I do not know waht is wrong, any ideas are welcome
 
   I am using Lisboa standallone installer in win 7 64 16gb of RAM
 
 
   Gerardo Jiménez Delgado
   Instituto de Investigaciones Antropológicas
   Universidad Nacional Autónoma de México
   Ciudad Universitaria s/n
   Coyoacan 04510 Mexico City
   Mexico 56 22 95 16
   
  
 
   ___
   Qgis-user mailing list
   Qgis-user@lists.osgeo.org
   http://lists.osgeo.org/mailman/listinfo/qgis-user
 
 
 
  --
  Andy Harfoot
 
  GeoData Institute
  University of Southampton
  Southampton
  SO17 1BJ
 
  Tel:  +44 (0)23 8059 2719
  Fax:  +44 (0)23 8059 2849
 
  www.geodata.soton.ac.uk
 
 
 
 
  ___
  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] Qgis to Ipad 2 (apps)

2012-11-15 Thread William Kyngesburye
2 major problems:

- the GPL doesn't work with the closed App Store distribution (what I've heard)

- I don't think Qt would be allowed (or even compile), so QGIS would need a 
complete rewrite to Cocoa/Objective C

On Nov 15, 2012, at 5:07 AM, legiopatrianostra wrote:

 Good morning everyone,
 
 I wonder if there is already some apps to install an Ipad 2 - 16 Gb with the 
 following characteristics:
 
 Model: MC773GP
 
 Version: 6.0.1 (10A523)
 
 Modem Firmware: 04.12.02
 
 Thanks to all the help.
 
 Thank you,
 
 Orlando Oliveira
 
 -- 
  Antes de imprimir este E-Mail pense na sua responsabilidade e compromisso 
 com o MEIO AMBIENTE!
  Before printing this email, take a moment to reflect on your responsability 
 with the Environment! 
 
 
 ___
 Qgis-user mailing list
 Qgis-user@lists.osgeo.org
 http://lists.osgeo.org/mailman/listinfo/qgis-user

-
William Kyngesburye kyngchaos*at*kyngchaos*dot*com
http://www.kyngchaos.com/

Earth: Mostly harmless

- revised entry in the HitchHiker's Guide to the Galaxy


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


Re: [Qgis-user] transparent labels

2012-11-15 Thread Pedro Venâncio
Hi Andreas,

Great! I have QGIS master on another machine, so I'll use it for that.

Thank you very much!

Best regards,
Pedro




- Original Message -
From: Andreas Neumann 

Hi Pedro,

This is possible in QGIS master - so please either wait for QGIS 2.0 or
install QGIS master if you need this feature.

Andreas

Am 15.11.2012 13:59, schrieb Pedro Venâncio:
 Hi,
 
 This was an old thread, but this question came to me now. It's possible to 
 apply transparency to the layer's labels?
 
 The transparency that is applied to the layer is not 'replicated' in its 
 label and I can not find a way to apply transparency to the labels (on QGIS 
 1.8).
 
 
 Thank you very much!
 
 Best regards,
 Pedro
 
 
 
 
 Tue Oct 20 14:10:14 EDT 2009


 I'm working on a map of selected U.S. DMA areas and would like to show
 labels on the DMA regions. However, I also need all the county names
 to be readable when the map is rendered. Can I make a layer's labels
 be transparent?

 There is a transparency option in the data-defined style settings, but
 that would seem to apply to layer objects and not labels. So far I've
 rendered map and labels separately, and composited them in an external
 image editor to get the transparency effect. These are large image
 files and my system is not exactly top-of-the-line, so I'm looking for
 a better technique : )

 Geofrey Sanders
 Weather Call Customer Care
 geofrey at weathercall.net
 voicemail: 1 (800) 260-6695
 ___
 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


[Qgis-user] Set relative path [QGIS 1.8.0 on Win XP]

2012-11-15 Thread Raffaella Sanna
Hi!
I have some problem working with relative path.

My QGIS project is stored with a path like this: E:/GIS_folder/Qgis.qgs, and 
all GIS data are in E:/GIS_folder/DATA_folder, so project and data are stored 
in the same folder.
I saved this project with relative path, from 'project properties' - 'save 
relative path', but when I copy all the folder GIS_folder on another pc (on 
C: disk) and I open the project, all shapefiles are still linked to my pc (E:, 
not C:).
Is it possible to make the project on other pc, without recall all the 
shapefiles' path?
Thank you,
Raffaella___
Qgis-user mailing list
Qgis-user@lists.osgeo.org
http://lists.osgeo.org/mailman/listinfo/qgis-user


[Qgis-user] ! and ! operators

2012-11-15 Thread Jonathan Moules
Hi Folks,
Just playing around with Raster calculator and typoed. It seems that raster
calculator thinks that: ! and ! are both valid operators. What do they
mean? Are they valid or is it a bug? Due to their nature its not something
you can just google (search engines bug out).
Jonathan


This transmission is intended for the named addressee(s) only and may contain 
sensitive or protectively marked material up to RESTRICTED and should be 
handled accordingly. Unless you are the named addressee (or authorised to 
receive it for the addressee) you may not copy or use it, or disclose it to 
anyone else. If you have received this transmission in error please notify the 
sender immediately. All email traffic sent to or from us,  including without 
limitation all GCSX traffic, may be subject to recording and/or monitoring in 
accordance with relevant legislation.
___
Qgis-user mailing list
Qgis-user@lists.osgeo.org
http://lists.osgeo.org/mailman/listinfo/qgis-user


Re: [Qgis-user] Where is R in QGIS Sextante

2012-11-15 Thread Manuel Spínola
Thank you very much Gene.

I remember there was an R icon on the Sextante menu, but I cannot see it
right now.  I have R installed in my computer.

In this link it shows a screenshot where you can see R within the SEXTANTE
menu.

http://press.underdiverwaterman.com/qgis-with-r-working-with-the-sextante-plugin/

Best,

Manuel


2012/11/15 gene martin.lal...@gmail.com

 R has nothing to do with Sextante which only use it. You must install it
 (see
 http://hub.qgis.org/issues/6029 http://hub.qgis.org/issues/6029  )



 --
 View this message in context:
 http://osgeo-org.1560.n6.nabble.com/Where-is-R-in-QGIS-Sextante-tp5016411p5016478.html
 Sent from the Quantum GIS - User mailing list archive at Nabble.com.
 ___
 Qgis-user mailing list
 Qgis-user@lists.osgeo.org
 http://lists.osgeo.org/mailman/listinfo/qgis-user




-- 
*Manuel Spínola, Ph.D.*
Instituto Internacional en Conservación y Manejo de Vida Silvestre
Universidad Nacional
Apartado 1350-3000
Heredia
COSTA RICA
mspin...@una.ac.cr
mspinol...@gmail.com
Teléfono: (506) 2277-3598
Fax: (506) 2237-7036
Personal website: Lobito de río https://sites.google.com/site/lobitoderio/
Institutional website: ICOMVIS http://www.icomvis.una.ac.cr/
___
Qgis-user mailing list
Qgis-user@lists.osgeo.org
http://lists.osgeo.org/mailman/listinfo/qgis-user


Re: [Qgis-user] Set relative path [QGIS 1.8.0 on Win XP]

2012-11-15 Thread Andre Joost

Am 15.11.2012 16:27, schrieb Raffaella Sanna:

Hi! I have some problem working with relative path.

My QGIS project is stored with a path like this:
E:/GIS_folder/Qgis.qgs, and all GIS data are in
E:/GIS_folder/DATA_folder, so project and data are stored in the same
folder. I saved this project with relative path, from 'project
properties' -  'save relative path', but when I copy all the folder
GIS_folder on another pc (on C: disk) and I open the project, all
shapefiles are still linked to my pc (E:, not C:).


Rather strange. It should be exactly opposite. Are these projects 
created with an older Qgis version? If I remember correctly, absolute 
paths were default until Qgis 1.7.3.


What happens if you change the properties entry to absolute?
You can look into the project file with a text editor and look for 
datasource tags.


greetings,
André Joost


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


Re: [Qgis-user] Set relative path [QGIS 1.8.0 on Win XP]

2012-11-15 Thread Jonathan Moules
Hi Raffaella,
I leave others to deal with absolute versus relative paths, however you can
open the .qgis file itself in notepad and use search and replace to replace
the paths that way. So search for E:\gis_folder\ and replace with
C:\newfolder\ for instance.
Jonathan



On 15 November 2012 15:27, Raffaella Sanna raffaellasa...@yahoo.it wrote:

  Hi!
 I have some problem working with relative path.
 My QGIS project is stored with a path like this: E:/GIS_folder/Qgis.qgs,
 and all GIS data are in E:/GIS_folder/DATA_folder, so project and data are
 stored in the same folder.
 I saved this project with relative path, from 'project properties' -
 'save relative path', but when I copy all the folder GIS_folder on
 another pc (on C: disk) and I open the project, all shapefiles are still
 linked to my pc (E:, not C:).
 Is it possible to make the project on other pc, without recall all the
 shapefiles' path?
 Thank you,
 Raffaella


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




This transmission is intended for the named addressee(s) only and may contain 
sensitive or protectively marked material up to RESTRICTED and should be 
handled accordingly. Unless you are the named addressee (or authorised to 
receive it for the addressee) you may not copy or use it, or disclose it to 
anyone else. If you have received this transmission in error please notify the 
sender immediately. All email traffic sent to or from us,  including without 
limitation all GCSX traffic, may be subject to recording and/or monitoring in 
accordance with relevant legislation.
___
Qgis-user mailing list
Qgis-user@lists.osgeo.org
http://lists.osgeo.org/mailman/listinfo/qgis-user


Re: [Qgis-user] qgis and Large Format Print

2012-11-15 Thread haubourg
I'm interested in knowing if using clustered temporary files is a possible
solution. Marco, your opinion? 

I'm also interested in knowing if somebody ever worked on a 64 bit Windows
version of QGIS.. That would be nice for perfs ! (I'm using WinServer 2008
R2.. 64 bits.). 

Régis



--
View this message in context: 
http://osgeo-org.1560.n6.nabble.com/qgis-and-Large-Format-Print-tp5016300p5016683.html
Sent from the Quantum GIS - User mailing list archive at Nabble.com.
___
Qgis-user mailing list
Qgis-user@lists.osgeo.org
http://lists.osgeo.org/mailman/listinfo/qgis-user


Re: [Qgis-user] qgis and Large Format Print

2012-11-15 Thread Marco Hugentobler

I'm interested in knowing if using clustered temporary files is a possible
solution. Marco, your opinion?


I think it is not worth the trouble. Better go with native 64bit builds, 
the 32 bit machines are disappearing more and more.


Regards,
Marco

On 15.11.2012 17:12, haubourg wrote:

I'm interested in knowing if using clustered temporary files is a possible
solution. Marco, your opinion?

I'm also interested in knowing if somebody ever worked on a 64 bit Windows
version of QGIS.. That would be nice for perfs ! (I'm using WinServer 2008
R2.. 64 bits.).

Régis



--
View this message in context: 
http://osgeo-org.1560.n6.nabble.com/qgis-and-Large-Format-Print-tp5016300p5016683.html
Sent from the Quantum GIS - User mailing list archive at Nabble.com.
___
Qgis-user mailing list
Qgis-user@lists.osgeo.org
http://lists.osgeo.org/mailman/listinfo/qgis-user



--
Dr. Marco Hugentobler
Sourcepole -  Linux  Open Source Solutions
Weberstrasse 5, CH-8004 Zürich, Switzerland
marco.hugentob...@sourcepole.ch http://www.sourcepole.ch
Technical Advisor QGIS Project Steering Committee

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


Re: [Qgis-user] qgis and Large Format Print

2012-11-15 Thread Paolo Cavallini
Il 15/11/2012 17:33, Marco Hugentobler ha scritto:
 I'm interested in knowing if using clustered temporary files is a
 possible
 solution. Marco, your opinion?

 I think it is not worth the trouble. Better go with native 64bit
 builds, the 32 bit machines are disappearing more and more.
Unfortunately, in many Public Administrations here in Italy, the upgrade
cycle for hardware is not so fast, so for several years we expect to
have still 32 bits (or 64 bit installed with 32 bit win).
In any case, I guess a 64 bit win build is not yet available, right?
So, in short, it would be good to have an idea wheter it is possible to
find a solution also for 32's.
Marco, any idea?
Thanks.

-- 
Paolo Cavallini - Faunalia
www.faunalia.eu
Full contact details at www.faunalia.eu/pc
Nuovi corsi QGIS e PostGIS: http://www.faunalia.it/calendario

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


Re: [Qgis-user] Where is R in QGIS Sextante

2012-11-15 Thread Werner Macho
On 15/11/12 16:52, Manuel Spínola wrote:
 Thank you very much Gene.

 I remember there was an R icon on the Sextante menu, but I cannot see
 it right now.  I have R installed in my computer.

 In this link it shows a screenshot where you can see R within the
 SEXTANTE menu.

Hi!

You have to go to Analysis - SEXTANTE Options and configuration - R
scripts - Activate ..

Then you should have R available again ..

HTH

kind regards
Werner

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


Re: [Qgis-user] Where is R in QGIS Sextante

2012-11-15 Thread MARIO ROBERTO PADILLA RAUDALES
Con mucho gusto ya sabes

2012/11/15 Manuel Spínola mspinol...@gmail.com

 Thank you very much Gene.

 I remember there was an R icon on the Sextante menu, but I cannot see it
 right now.  I have R installed in my computer.

 In this link it shows a screenshot where you can see R within the SEXTANTE
 menu.


 http://press.underdiverwaterman.com/qgis-with-r-working-with-the-sextante-plugin/

 Best,

 Manuel


 2012/11/15 gene martin.lal...@gmail.com

 R has nothing to do with Sextante which only use it. You must install it
 (see
 http://hub.qgis.org/issues/6029 http://hub.qgis.org/issues/6029  )



 --
 View this message in context:
 http://osgeo-org.1560.n6.nabble.com/Where-is-R-in-QGIS-Sextante-tp5016411p5016478.html
 Sent from the Quantum GIS - User mailing list archive at Nabble.com.
 ___
 Qgis-user mailing list
 Qgis-user@lists.osgeo.org
 http://lists.osgeo.org/mailman/listinfo/qgis-user




 --
 *Manuel Spínola, Ph.D.*
 Instituto Internacional en Conservación y Manejo de Vida Silvestre
 Universidad Nacional
 Apartado 1350-3000
 Heredia
 COSTA RICA
 mspin...@una.ac.cr
 mspinol...@gmail.com
 Teléfono: (506) 2277-3598
 Fax: (506) 2237-7036
 Personal website: Lobito de ríohttps://sites.google.com/site/lobitoderio/
 Institutional website: ICOMVIS http://www.icomvis.una.ac.cr/

 ___
 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] QGIS doesn't start anymore: undefined symbol: pj_ctx_alloc

2012-11-15 Thread Etienne Tourigny
I would suggest try to downgrade proj.4 and see if that helps, if so
send an email to the ubuntugis mailing list.

Open synaptic, select the proj package and click on Package-Force
version - and then select 4.7 if it's available.  (I use oneiric so
can't test for precise).

cheers
Etienne

On Thu, Nov 15, 2012 at 11:06 AM, Luís de Sousa
luis.a.de.so...@gmail.com wrote:
 Hi Etienne,

 Assuming this is a problem with proj, what would you suggest me to do?

 Thank you.



 --
 View this message in context: 
 http://osgeo-org.1560.n6.nabble.com/QGIS-doesn-t-start-anymore-undefined-symbol-pj-ctx-alloc-tp5016501p5016608.html
 Sent from the Quantum GIS - User mailing list archive at Nabble.com.
 ___
 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] Stuck GPS

2012-11-15 Thread Tomáš Vrána

Hi,

for some time I have not used GPS live tracking in Qgis. Now I have 
tried it, and it seems like there is some strange problem. Reported GPS 
coordinates are stuck to unchanging values. When I run GPS via gpsd, I 
can verify that GPS reports different, correct coords (via xgps). I 
running Qgis 1.8.0 on openSuse linux, I have also tried latest git 
master with same results. I am rather desperate and fresh out of ideas.


Tom


--
Tomas Vrana  tomas.vr...@cemotel.cz
-
Ceskomoravska telekomunikacni s.r.o.
http://www.cemotel.cz/
phone: +420 530 505 505

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


[Qgis-user] Class Problem

2012-11-15 Thread Mohammad Omayr
I'm new to QGIS and having a problem.
In Python console of QGIS I can make objects of any class which starts
with Qgs___,
but I'm unable to create an object of class Point3D which represents a 3D
point. How Am I supposed to do that in python console? Help Needed!
Thanks in advance
___
Qgis-user mailing list
Qgis-user@lists.osgeo.org
http://lists.osgeo.org/mailman/listinfo/qgis-user


Re: [Qgis-user] qgis and Large Format Print

2012-11-15 Thread Luca Manganelli
Il 15/11/2012, qgis-user-boun...@lists.osgeo.org ha scritto:

 Unfortunately, in many Public Administrations here in Italy, the upgrade
 cycle for hardware is not so fast, so for several years we expect to
 have still 32 bits (or 64 bit installed with 32 bit win).
 In any case, I guess a 64 bit win build is not yet available, right?
 So, in short, it would be good to have an idea wheter it is possible to
 find a solution also for 32's.
 Marco, any idea?
 Thanks.

I can confirm this situation. Many corporate machines are still running 32 
bit operating system (Windows XP) because they must guarantee compatibility 
with certain old software.

It's not a good excuse to say go to 64 bit! because for years ArcMap was 
able to print very large and complex (A0 format and beyond) maps on PC with 
only 2GB of RAM.___
Qgis-user mailing list
Qgis-user@lists.osgeo.org
http://lists.osgeo.org/mailman/listinfo/qgis-user


Re: [Qgis-user] qgis and Large Format Print

2012-11-15 Thread Bernhard Ströbl



Am 16.11.2012 08:32, schrieb Luca Manganelli:

Il 15/11/2012, qgis-user-boun...@lists.osgeo.org ha scritto:


Unfortunately, in many Public Administrations here in Italy, the upgrade
cycle for hardware is not so fast, so for several years we expect to
have still 32 bits (or 64 bit installed with 32 bit win).
In any case, I guess a 64 bit win build is not yet available, right?
So, in short, it would be good to have an idea wheter it is possible to
find a solution also for 32's.
Marco, any idea?
Thanks.


I can confirm this situation. Many corporate machines are still running 32
bit operating system (Windows XP) because they must guarantee compatibility
with certain old software.

It's not a good excuse to say go to 64 bit! because for years ArcMap was
able to print very large and complex (A0 format and beyond) maps on PC with
only 2GB of RAM.



The print problems on Win32 are a major drawback here as large format 
plans are needed.
Just to illustrate what Luca wrote: We are a city administration running 
around 1200 PCs with some 500+ applications on WinXP. Hardware is less a 
problem (almost all machines will be 64 bit next year) than to ensure 
compatibility of _all_ applications with Win64. This needs intense 
testing and negotiations with software companies and thus - time.


Bernhard


__ Information from ESET Mail Security, version of virus signature 
database 7697 (20121115) __

The message was checked by ESET Mail Security.
http://www.eset.com


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