[Qgis-user] Re: Annoying CRS-Problem with EPSG 31468 / 2167

2012-03-22 Thread Andre Joost

Am 22.03.12 09:28, schrieb bernhard.stro...@jena.de:

Problem confirmed here

Example of prj file (produced by GRASS):
PROJCS[Transverse_Mercator,GEOGCS[GCS_bessel,DATUM[D_Deutsches_Hauptdreiecksnetz,SPHEROID[Bessel_1841,6377397.155,299.1528128]],PRIMEM[Greenwich,0],UNIT[Degree,0.017453292519943295]],PROJECTION[Transverse_Mercator],PARAMETER[latitude_of_origin,0],PARAMETER[central_meridian,12],PARAMETER[scale_factor,1],PARAMETER[false_easting,450],PARAMETER[false_northing,0],UNIT[Meter,1]]


QGIS loads this with EPSG:2167 which contains the following proj4
parameters:
+proj=tmerc +lat_0=0 +lon_0=12 +k=1 +x_0=450 +y_0=0 +ellps=krass
+towgs84=26,-121,-78,0,0,0,0 +units=m +no_defs

whereas EPSG:31468 has:
+proj=tmerc +lat_0=0 +lon_0=12 +k=1 +x_0=450 +y_0=0 +ellps=bessel
+towgs84=582,105,414,1.04,0.35,-3.08,8.3 +units=m +no_defs

The problem may be there are no explicit towgs84 parameters BUT there is
a datum given in the prj file which other software translates into a
towgs84 parameter and vice versa, QGIS does not.


... and Qgis has picked another ellipsoid (Krassowsky instead of Bessel, 
which is definitely wrong.


I had similiar problems when transformning Geotiff raster data from DHDN 
to Google Mercator using gdalwarp: EPSG:900913 always gave an offset to 
the north by 20km, while using EPSG:3785 was placed correctly.


By the way, the towgs84 paramters for DHDN are only a rough geuss. Exact 
values differ from region to region, or can be replaced by the 
high-accuracy beta2007 transformation.


Greetings,
Andre Joost


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


[Qgis-user] Re: ecw problems

2012-03-22 Thread Andre Joost

Am 22.03.12 11:48, schrieb pieri70:

Hello Werner Macho
I'm working in Windows XP and all the software I use are installed trough
Osgeo4W installer..
I didn't compile any part of the installation and usually every upgrade to
libs comes from the same installer.
If there is any other way please that integrate manually recompiling and
osgeo4w installation please tell me.


In the osgeo4w-setup.exe (advanced installation), you still can choose 
the version 1.5.2-2 of the ecw driver, if you click once again on the 
new version number, together with gdal15.dll; or choose gdal18 dll 
version 1.8.1-0. Maybe that works for you.


HTH,
Andre Joost


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


[Qgis-user] Re: ecw problems

2012-03-22 Thread Andre Joost

Am 22.03.12 12:45, schrieb pieri70:

It doesn't work both with 1.5.22 and 1.8.0.1

--
View this message in context: 
http://osgeo-org.1560.n6.nabble.com/ecw-problems-tp4126237p4644309.html
Sent from the Quantum GIS - User mailing list archive at Nabble.com.



Alternatively you could try the ms4w-build:
http://www.gisinternals.com/sdk/

HTH,
ajoessen



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


[Qgis-user] Re: ecw problems

2012-03-22 Thread Andre Joost

Am 22.03.2012 16:16, schrieb skampus:

please, can you explain how it has to be used?



Via command line, much like the osgeo4w installation works:
assuming you have installed the ms4w package to D:\ms4w,

You will find a setenv.bat in that directory, which sets environment 
paths corectly, not touching your osgeo4w-settings.


Choose the directory with your raster file. Create a batch file test.bat
and enter:

call D:\ms4w\setenv.bat
gdaltransform -s_srs EPSG:31467 -t_srs EPSG:4326 31467.txt out.txt

and a file 31467.txt with the content:
3348778.0 5717526.0 0

Executing the batch file will transform the coordinates and write them 
to out.txt.


If that works, you can use the other gdal tools in the same way.

The same works with the osgeo4w package, except that the environment 
setting has to be included in your batch file:


@echo off
set OSGEO4W_ROOT=C:\OSGeo4W
PATH=%OSGEO4W_ROOT%\bin;%PATH%
for %%f in (%OSGEO4W_ROOT%\etc\ini\*.bat) do call %%f

Advantage of OSGeo4w is, that it brings its own python with it. ms4w 
expects a python installation by the user.




BUT: looking at the history.txt of the installation, they have dropped 
ecw support a few years ago :-(

The website says they are still supporting it.

Greetings,
Andre Joost


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


[Qgis-user] Re: ecw problems

2012-03-22 Thread Andre Joost

Am 22.03.2012 20:26, schrieb Andre Joost:

Am 22.03.2012 16:16, schrieb skampus:

please, can you explain how it has to be used?



Via command line, much like the osgeo4w installation works:



Sorry, I got mixed up with the Mapserver for Windows installation, which 
also has gdal ;-)


For the standalone gdal installer linked above, it is much more simple:

expand the zip-file to a folder you want, e.g. D:\gdal

Put your raster file in that folder.

You will find a batchfile SDKshell.bat in there. Just double click it, 
and you get a commandline prompt with correct environment setting.


Then, just type
gdal_translate -expand rgba testfile.tif -of ecw testfile.ecw

and your tif-source will be translated to ecw.

gdal_translate testfile.ecw -of png testfile.png

changes it to png format.

HTH,
ajoessen




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


[Qgis-user] Re: ecw problems

2012-03-23 Thread Andre Joost

Am 23.03.12 08:19, schrieb pieri70:

Hi Andre
my problem is that GDAL is used by QGis and both these programs are
installed trough Osgeo4W setup.
So, how can I make qgis installed that way use GDAL installed as standalone?
Doesn't it collide with the one given by Osgeo4W, that is installed too?



If you install the standalone version form
http://www.gisinternals.com/sdk/
make sure it has no red warning in the line where you download

If you execute the SDKshell.bat inside the directory, gdal points to 
that standalone version. Exiting that shell, everything is back to normal.
You can transform your raster from ecw to something other in the shell, 
then proceed the result with Qgis the normal way.


Its just a workaround as long as the ecw driver in osgeo4w does not work 
properly with osgeo4w gdal.


HTH,
Andre Joost


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


[Qgis-user] Re: UTF-8 no more :(

2012-03-23 Thread Andre Joost

Am 23.03.12 09:38, schrieb Koos Hagg:

Yes I have. right now I have 1.9.0-2

I just tried to downgrade GDAL to 1.8 (in the OSGeo4W installer) but
GDAL 1.9 is a depencency for many things...

I guess I'll just wait a bit until the bugs get worked out or is there
something else I can do (aside from compiling QGIS/GDAL myself- I'm
not skilled in that area)


You could deinstall 1.7.4 and try an older standalone Version of QGIS 
from here:

http://qgis.org/downloads/
Unless there are features not working for you in qgis 1.7.3

HTH,
Andre Joost



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


[Qgis-user] Re: Using CRS to convert from Lat Long to Irish National Grid

2012-03-27 Thread Andre Joost

Am 27.03.2012 20:14, schrieb Kurt Springs:

Hi Folks,

I'm in a bit of a pickle.  I am preparing some maps for a grant
proposal and wanted to add some good vector maps for lakes and
oceans.  The problem is these vector maps are in latitude/longitude
and I need to convert them to Irish National Grid.  I tried using
v.proj in GRASS but ran into problmes (and that is a different list
group anyway).  After searching the internet I discovered CRS.

I made sure properties was set to IRENET95/Irish Transverse Mercator
and checked Enable 'on the fly' CRS transformation.  Then I right
clicked the vector layer and selected Set Layer CRS and set it,
again, for IRENET95/Irish Transverse Mercator.  If I accept what is
there already as right, all the lakes wound up in South America.  It
looks like the lat/long numbers didn't convert over.  Is there a way
to manually move them into position and make it away that this is
it's right and proper position under IRENET95/Irish Transverse
Mercator?



If the vector data is in lat/lon, you should set the vector layer CRS to 
EPSG:4326, and not the Irish Grid.


HTH,
Andre Joost



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


Re: [Qgis-psc] Re: [Qgis-user] Closure of forum

2012-04-04 Thread Andre Joost

Am 04.04.12 13:47, schrieb Anita Graser:

On 4/4/12, jonathanmou...@warwickshire.gov.uk
jonathanmou...@warwickshire.gov.uk  wrote:

A relatively quick win would be the QGIS website making it clear what
the avenues are and how to get to them in a nice obvious clean page.
Jonathan


That was the aim of my latest changes to http://qgis.org/
Have you seen them yet? I added big buttons that lead to the support
channels.



Not for german and french users; they still have the old layout without 
buttons.[1]


Greetings,
Andre Joost

[1] http://qgis.org/fr.html
  http://qgis.org/de.html


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


[Qgis-user] Re: Google Mercator

2012-04-10 Thread Andre Joost

Am 10.04.12 12:33, schrieb Hannah Pethen:

I have observed a similar problem with Google mercator and vector
files. I have a google satellite map, and several point vector files
all in google mercator transformation, but the relationship between
the locations on the map and the locations of the points of the
vector files are not stable. If I open print composer or change the
zoom I find the points have moved relative to the map, so that my
points are not longer in the correct places, although I don't know
whether the points or the map have moved (or both?). The same thing
happens with vector line files. This happens whether or not I have
'on the fly transformation' checked and if I check 'on the fly
transformation' and then use vector files in another transformation
(e.g. EPSG4326) the same problem occurs. I wonder if there is an
issue with the stability of the transformation and if this is
affecting both my point locations and the polygon areas referred to
by Nick.



You could try using EPSG:3857 instead of EPSG:900913. For some strange 
reasons raster data transformed to EPSG:900913 is located on the map 
different from EPSG:3857 projected rasters. Maybe another 
Qgis-guesses-projection-issue.


Greetings,
Andre Joost


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


[Qgis-user] Re: QGIS wroclaw 1.7.3. can not run in windows 7

2012-04-19 Thread Andre Joost

Am 19.04.2012 14:43, schrieb imanuddin imanuddin:

Hi

  I  use Enceladus for myc computer (windows 7). I'm now trying to  use
wroclaw 1.7.3. and installed it . However it always fail to tun. the
computer always send message qgis.exe-ordinal not found  the
ordinal 284 could not be located in the dynamic link library
SSLEAY32.dll.  Please let me know how to fix this problem.

You have to de-install the Enceladus installation. To be sure, delete 
the complete qgis program folder before installing Wroclaw, and the 
.qgis folder in C:\users\name\

But keep your project files in a safe place ;-)

By the way, 1.7.4 is current.

Greetings,
Andre Joost



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


Re: [Qgis-user] Quantum GIS Planet

2012-05-29 Thread Andre Joost

Am 29.05.12 12:16, schrieb Maurizio Foderà:

I tried to add myself in the User QGIS map
http://planet.qgis.org/community-map/create_user_form.html
http://planet.qgis.org/community-map/create_user_form.html, but I
don’t see the map to edit my location.

Anybody knows why?



I think this is the trouble-maker:

Fehler: OpenLayers.Layer.OSM.Osmarender is not a constructor
Quelldatei: http://plugins.qgis.org/static/olwidget/js/olwidget.js
Zeile: 87

In March, Openstreetmap has dropped the Osmarender layer, leaving every
Openlayers user with that error message. Admins should remove the
Osmarender layer, and it should work.
They did it on the planet.qgis map, but not on the map for create_user_form

HTH,
Andre Joost

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


Re: [Qgis-user] problem with VectorMerge Shapefiles

2012-06-05 Thread Andre Joost

Am 05.06.12 23:22, schrieb Giacomo Fontanelli:

Hello everybody
I use QGis 1.7.4. and Windows Seven.
I would like to merge 10 polygonal shape files in a single shapefile. I
putted all the single shape files in the same folder but when I start the
process here comes this error message:

Errore durante l'esecuzione di codice Python:
Traceback (most recent call last):
   File C:\PROGRA~2\Quantum GIS
Wroclaw\apps\qgis\python\plugins\fTools\tools\doMergeShapes.py, line 124,
in accept
 if self.inEncoding == None:



If you dont want to switch to the dev version, you can try this:
(from 
http://gis.stackexchange.com/questions/23647/what-is-the-problem-with-the-merge-shapefiles-tool-in-qgis 
)


Browse in Windows Explorer to the file mentioned:

File C:\PROGRAMS (X86)\Quantum GIS
 Wroclaw\apps\qgis\python\plugins\fTools\tools\doMergeShapes.py

open it with a suitable editor (I use notepad++)
in line 22 you will find:


self.outFileName = None


insert after that:

   self.inEncoding = None

you have to adjust the beginning of the line with blanks (do not use 
tabulator key!) so that the self. are standing left aligned.

Save the file and start Qgis again.

HTH,
André Joost


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


Re: [Qgis-user] reprojecting data

2012-06-11 Thread Andre Joost

Am 11.06.2012 19:02, schrieb Dennis M. Linton:

It has been my understanding that this procedure is supposed to work to
reproject.  Howerver, I am never successful.  I use 'EPSG:26917 -
NAD83 / UTM zone 17N' almost exclusively but upon loading files that
were supposed to be saved in that CRS, I find that they are always
'EPSG:2150 - NAD83(CSRS98) / UTM zone 17N (deprecated)'.

I have project default CRS set to 'EPSG:26917 - NAD83 / UTM zone 17N'
and OTF on by default.  Regardless of whether I additionally specify
'EPSG:26917 - NAD83 / UTM zone 17N' when creating a layer or if I do a
Layer-Save As, the result always loads as 'EPSG:2150 - NAD83(CSRS98) /
UTM zone 17N (deprecated)'.

I must be doing something incorrectly - can anyone enlighten me?



Qgis has sometimes problems with similar CRS, because it does not always 
look at the EPSG-code, but at the proj-parameters, guessing what CRS is 
meant to be correct.


Maybe your issue is solved in the latest (Master) version.

Greetings,
André Joost

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


Re: [Qgis-user] remove InfoWindow in Google Satellite Layer

2012-06-11 Thread Andre Joost

Am 11.06.2012 16:45, schrieb Detlev Finke:

Hello there,



I use OpenLayers Extension with Google Satellite Layer in Mapprojects
For a short time is displayed in the center of the map window, a window with
information on the card providers. How can this window be removed?


You should update the plugin. The matter has been fixed in the latest 
version.


HTH,
André Joost



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


Re: [Qgis-user] OpenLayers plugin crashes QGIS

2012-06-23 Thread Andre Joost

Am 23.06.2012 16:45, schrieb Kurt Menke:

Hello,

I have experienced consistent issues with the latest OpenLayers plugin with
QGIS 1.7.4. The only way I can get the plugin to work is if I open a new
QGIS project, set my project CRS to Google Mercator (EPSG: 900913) and then
add an OpenLayers layer such as OpenStreetMap or Google. However, if I then
add another layer, for example a shapefile in EPSG: 4326, QGIS crashes. If I
set my project to anything other than Google Mercator, QGIS crashes as soon
as I try to add an OpenLayers plugin layer to the map canvas.


The project *must* *have* the CRS of the Google/OSM Tiles (reprojected 
tiles would look ugly).
In the latest version, this is EPSG:3857. 900913 will be depricated in 
future Versions of Qgis.
The Openlayers plugin works fine with that. Windows 7 Qgis 1.7.4 
standalone installer.


HTH,
Andre Joost

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


Re: [Qgis-user] Can't run Quantum

2012-06-23 Thread Andre Joost

Am 23.06.2012 19:05, schrieb Michael R. Melton:

When I try to run program I receive:



The procedure entry point local_charset could not be located in the dynamic
link library iconv.dll.





Perhaps this may help:

http://gis.stackexchange.com/questions/14323/how-to-fix-qgis-error-entry-point-could-not-be-located

Greetings,
Andre Joost


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


Re: [Qgis-user] QGIS 1.8 on Windows 7 will not load

2012-06-27 Thread Andre Joost

Am 27.06.2012 19:41, schrieb rhosk...@u.washington.edu:



I have installed 1.8 on Windows 7 but I get a message The procedure entry point 
sqlite3_open_v2 could not be located in the dynamic link library sqlite3.dll  I 
uninstalled, reinstalled, etc - same result.

Same install on Windows XP results in a working 1.8

How can I fix this on Windows 7?



Perhaps this may help:

http://gis.stackexchange.com/questions/14323/how-to-fix-qgis-error-entry-point-could-not-be-located

Greetings,
Andre Joost

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


[Qgis-user] [1.8.0] Broken UTF-8 support in shapefiles - and workaround

2012-06-28 Thread Andre Joost

Hi all,

since 1.8.0 is now the offical stable version, I installed it on Windows 
7, besides the old 1.7.4.


The only thing that does not work as expected:
All text with non-ASCII-characters (e.g. ä ö ü) is broken.
The shapefiles are encoded utf-8, and read fine in OpenOffice and qgis 
1.7.4. It seems that they are interpreted as codepage System, that is 
1252 for Windows.
If I create a new shapefile, given encoding=utf-8, this will be broken 
in OpenOffice and Qgis 1.7.4.


Layers from spatialite and postgis databases are not broken.

I found this workaround:
Look for the folder
C:\Program Files (x86)\Quantum GIS Lisboa\bin\
(or where the Program has been installed to)
open qgis.bat with a suitable text editor
Insert the line
SET SHAPE_ENCODING=UTF-8
in line 4
save it, and shapefiles in utf-8 will open correctly.

Hoping this might be useful to others...

And perhaps someone can put this into the windows installer.

Greetings,
André Joost

___
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-07-05 Thread Andre Joost

Am 27.06.2012 21:03, schrieb Anita Graser:

Fixed the wiki. Thanks for pointing it out.

Anita


If you could kindly update the german page also...
The other language pages are already fixed.

Thx,
André Joost

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


Re: [Qgis-user] site down?

2012-07-05 Thread Andre Joost

Am 05.07.2012 15:31, schrieb flavio rigolon:

Hi all,
  the connection to www.qgis.org gives no response since today afternoon
(this mornig I downloaded smoothly a standalone qgis 1.8
version)...Pinging also returns no response.
Is there an ongoing maintenance? Or is it my own connection problem?
(BTW, I can browse all over the internet)


No problem here. The site even knows which language I prefer to read ;-)
But the other language pages are also running fine.

Greetings,
André Joost


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


Re: [Qgis-user] shp a GPS

2012-07-15 Thread Andre Joost

Am 15.07.12 21:44, schrieb Lene Fischer:

Hi
In the textbox Data Source write GPX_USE_EXTENSIONS=yes



Or mark the first checkbox underneath:
Attributerzeugng unterdrücken in German, maybe supress attribute 
creation or something like that in other languages.


HTH,
André Joost


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


Re: [Qgis-user] shp a GPS

2012-07-16 Thread Andre Joost

Am 16.07.12 08:36, schrieb Lene Fischer:

Hi André
In this case you don´t get the attribut data in the file, just objectdata.


Thats true, but a GPS unit would not understand those attributes anyway.

Greetings,
André Joost

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


Re: [Qgis-user] shp a GPS

2012-07-16 Thread Andre Joost

Am 16.07.12 09:48, schrieb Lene Fischer:

Hi JC
If I use GPSBabel I can´t find SHP format to convert. Which format do you use 
for uploading a SHP til GPS via Babel?

I normally use QGISSave As  GPX  GPX_USE_EXTENSIONS=yes
Then GPS-ToolsUpload to GPS
or  Save As and then choosing the GPS-disk (depending on which GPS I use)



Save As  GPX only creates *routes* in GPX files. If you want *tracks* 
instead, you can transform the file with GPSbabel using the filter option

routes - tracks.

Or is there another way to get track-GPX directly out of Qgis?
I'm missing that feature in the GPS Tools.

Greetings,
André Joost


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


Re: [Qgis-user] Problem with add postgis layers in qgis 1.80

2012-07-19 Thread Andre Joost

Am 19.07.12 10:09, schrieb Giovanni Manghi:

On Thu, 2012-07-19 at 07:14 +0200, siegfried.bl...@lazbw.bwl.de wrote:

Hallo

‚add postgis layers“ is very, very slowly in qgis 1.80 when I have
many tables. It needs several (up to 10) minutes until all tables
where “detecting” every time when I want add a postgis layer.

Thanks for tricky tips to make it faster!



Hi,

I have DB with 1+ tables (no views for now) in it and many different
schemas, and the table list shows in a just 2/3 seconds.



Not quiet the same for me:
I use a postgis database with openstreetmap data of my region. The table 
for (multi-)polygons takes a lot of time to detect the type of elements.

Only one table, but lots of elements in there (one for every building...)

Greetings,
Andre Joost

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


Re: [Qgis-user] Is there a limit of loaded files in QGis 1.8 ?

2012-07-19 Thread Andre Joost

Am 19.07.12 10:09, schrieb Giovanni Manghi:

On Thu, 2012-07-19 at 09:15 +0200, Germán Carrillo wrote:

Hi,

indeed, it is an operating system (OS) restriction. In my GNU/Linux
the limit is 1024 by default, but you are able to change it. You would
need to search how to change it on your OS. See [1].


yes, it is a OS limit and remember also that when opening a shapefile
you are opening at least 3 files...




For vector files, a sqlite or postgis database should be worth considering.

Could it be helpful to use VRT for Raster files?

Greetings,
André Joost

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


Re: [Qgis-user] Regarding case studies...

2012-07-22 Thread Andre Joost

Am 22.07.2012 17:37, schrieb John Callahan:



I'm looking for something close to a QGIS in Action list.   Sorry if this
has been tried before or not detailed enough to be beneficial to the larger
audience.  Personally, I would find it useful.   Just a thought...


Perhaps something like the user pages in Wikipedia and Openstreetmap 
wiki, where everyone can write down his own experiences.


Greetings,
André Joost

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


Re: [Qgis-user] Postgis CRS setting?

2012-07-22 Thread Andre Joost

Am 23.07.12 04:13, schrieb Matt Boyd:

Hi fellow QGIS users,
I've been using postgis for some time now and one thing I've never
managed to work out is if CRS detection / specification is supported
at the database end.
ie, can I load my data into postgis and have the CRS recognised
internally by the databse. At the moment each time I load a postgis
layer I need to specify the CRS.



There must be: If I connect to my openstreetmap database, the CRS is 
known to Qgis. But I don't know how it is managed by the importing program.


Greetings,
André Joost

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


Re: [Qgis-user] Regarding case studies...

2012-07-22 Thread Andre Joost

Am 23.07.12 00:15, schrieb John Callahan:


@Andre: I was thinking more along the lines of a single page list (if
possible.)  Something where users can scroll down and easily see the types
of applications and real-world tasks that are being performed with QGIS.



I'm afraid Qgis offers more possibilites than *one* page can contain ;-)

But a link list would be great for a start. There are a number of blogs 
around, but without a systematic aproach to bundle the knowledge.


Greetings,
André Joost

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


Re: [Qgis-user] Selecting polygons on attribute

2012-07-24 Thread Andre Joost

Am 24.07.12 14:10, schrieb Zoltan Szecsei:



The selects I have tried are: sq21code = C016* and also tried using
IN

Any ideas what I am doing wrong and what I should try next?



The * used as a wildcard in the Windows world is not used in SQL 
statements. You should try the LIKE operator:


http://www.w3schools.com/sql/sql_like.asp

with % as the correct wildcard.

HTH,
Andre Joost


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


Re: [Qgis-user] Selecting polygons on attribute - Trying OGR

2012-07-24 Thread Andre Joost

Am 24.07.2012 17:07, schrieb Micha Silver:





This worked for me (on a *very* small shapefile. Some of the Name attributes
where rest  1, rest 2 etc):

ogr2ogr -f ESRI Shapefile -where Name LIKE 'Rest%' waypoints3.shp 
waypoints.shp



Using Windows 7 cmd box, the % will get misinterpreted. But this works 
for me:


ogr2ogr -where name LIKE '2200%%' test.shp source.shp

HTH,
André Joost


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


Re: [Qgis-user] Selecting polygons on attribute - Trying OGR

2012-07-24 Thread Andre Joost

Am 24.07.2012 17:21, schrieb Micha Silver:



I think the problem is the attribute column name begins with a digit. Look what
happens when I rename my column from above to 21Name:



In the Qgis query form, no error is produced, but all elements are 
'found' after renaming the field name to another beginning with numbers.


Greetings,
André Joost

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


Re: [Qgis-user] Objekte trennen

2012-07-25 Thread Andre Joost

Am 25.07.12 10:18, schrieb Sylvia Preuß:

Hallo zusammen,

Version 1.6.0

ich möchte gerne ein Objekt, das aus 2 räumlich getrennten Flächen besteht
in 2 einzelne Objekte trennen. Jede Fläche soll ein separates Objekt werden.
Über den Button Objekte trennen gelingt es mir nur innerhalb einer Fläche
eine Trennlinie zu ziehen.



Vektor - Geometrie-Werkzeuge - Mehr- zu einteilig

erzeugt ein neues Shapefile aus dem gewählten Layer, das *alle* 
mehrteiligen Polygone in Einzelpolygonen zerlegt.


Also bei Bedarf das Doppelobjekt vorher in einen eigenen, neuen Layer 
verschieben.


Ob das in 1.6.0 schon funktionierte, weiß ich nicht. Das Update auf 
1.8.0 lohnt sich!


Gruß,
André Joost


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


Re: [Qgis-user] Google earth kml file not opening in Qgis

2012-07-31 Thread Andre Joost

Am 31.07.12 13:16, schrieb Harish:

.kml can also be opened easily in QGIS, but editing is not possible.



Not all kml can be opened. I have created some of my own, with links to 
external symbols. Qgis won't load that files, and gives no error 
messages. In Google maps and Google Earth they work fine.


Converting with gpsbabel to gpx makes the file content accessible.

Greetings,
André Joost

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


Re: [Qgis-user] Google earth kml file not opening in Qgis

2012-07-31 Thread Andre Joost

Am 31.07.12 14:03, schrieb Ralf Wessels:

maybe it is an old kml-version?
try to open it in Google Earth (actual version) and save it again - to be sure
to have a valid file.
ralf


No change, but:
Importing kml gives a list of layers to select. If I dont select 
anything, i get nothing ;-)


As long as I have only one folder in the kml, it opens at once.

Not very intuitive, default should be to load all available layers. 
Shapefile and GPX do it that way round.


Greetings,
André Joost


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


Re: [Qgis-user] Google earth kml file not opening in Qgis

2012-07-31 Thread Andre Joost

Am 31.07.12 14:32, schrieb Andre Joost:

Am 31.07.12 14:03, schrieb Ralf Wessels:

maybe it is an old kml-version?
try to open it in Google Earth (actual version) and save it again - to
be sure
to have a valid file.
ralf


No change, but:
Importing kml gives a list of layers to select. If I dont select
anything, i get nothing ;-)

As long as I have only one folder in the kml, it opens at once.



Just another thing: It is possible to have points and tracks in the same 
folder with Google Earth kml, but Qgis does not like that, and displays 
only one geometry type.


HTH,
André joost

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


Re: [Qgis-user] Google earth kml file not opening in Qgis

2012-07-31 Thread Andre Joost

Am 31.07.2012 16:51, schrieb Zoltan Szecsei:

On 2012/07/31 16:30, Ralf Wessels wrote:

Andre is right - qgis (_like other gis systems too)_ cannot display
points, lines and polygons in one layer. It has to be either points or
lines or polygons. In a kml-file this is no problem.


The like other gis systems part of your statement is total hogwash.
Sorry.
You've obviously only been brought up on a diet of ShapeFiles.



To calm down:

It has some advantages to have different geometry types separately in 
different layers.


The GPX import in Qgis makes three different layers out of points, 
routes and tracks within the same file. It would be nice to implement 
this in kml import, if several geometry types are encountered in the 
same folder. This is far better than just throw away elements of other 
types.


Greetings,
Andre Joost

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


Re: [Qgis-user] Problems with local characters in version 1.8.0

2012-08-01 Thread Andre Joost

Am 01.08.12 11:10, schrieb magerlin:

I usually create (and read) shape files using the System encoding which in
my case is: da_DK (which should be equal to ISO-8859-15 as far as I know).

Thís has been working fine in earlier versions of Qgis but in version 1.8.0
this is not the case:



Yes, there is some trouble with GDAL and QGIS in respect with encoding 
issues.
Older Versions of GDAL left the encoding entirely to qgis. There is a 
ticket open to solve it.

If the misspelling gets annoying, try spatialite database in the meantime.

HTH,
André Joost


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


Re: [Qgis-user] Incorrect placement of ABC labels

2012-08-01 Thread Andre Joost

Am 01.08.12 10:11, schrieb magerlin:



No they are singlepart.

The data are here:  https://dl.dropbox.com/u/8189384/P-muligheder.zip
https://dl.dropbox.com/u/8189384/P-muligheder.zip



I tried it with same result.
It seems that only smaller objects have the label way off. Most probably 
a bug. The horizontal option looks much better.


Greetings,
André Joost



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


Re: [Qgis-user] Incorrect placement of ABC labels

2012-08-01 Thread Andre Joost

Am 01.08.12 22:32, schrieb Tim Sutton:

Hi

On Wed, Aug 1, 2012 at 11:18 AM, magerlinm...@ramboll.dk  wrote:

8snip-


Yes you can choose different sort of placement but I have selected Over
centroid which removes a lot of the other placement adjustment
possibilities.

It is possible (for debugging purposes) to make ABC show all label
candidates but only one is shown when over centroid is selected.




Yes indeed you can do this:

label dialog -  advanced tab -  engine settings

Perhaps you could share part of the dataset that replicates the issue
so that others could test?



You find the link in the third post.

HTH,
André Joost


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


Re: [Qgis-user] Points to Paths plugin

2012-08-02 Thread Andre Joost

Am 02.08.12 09:30, schrieb Matt Boyd:

Hi list,
I can't seem to find the points to paths plugin. Assuming it's not
moved over to the new repository could someone let me know which
repository is in.


You have to enable the experimental plugins to see the point to path plugin.
Then you find it in Qgis contributed.

HTH,
André Joost


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


Re: [Qgis-user] Load OpenStreetMap in qgis as raster layer without the openlayer plugin

2012-08-04 Thread Andre Joost

Am 04.08.2012 11:48, schrieb marco bra:

Want to share something, i found useful, about loading gdal generates tiles
as raster layer in qgis:

http://www.3liz.com/blog/rldhont/index.php?post/2012/07/17/OpenStreetMap-Tiles-in-QGIS
this method can be used also to speedup qgis-mapserver rendering



Sounds simple, but the result looks a bit weired. The latest version of 
openlayers plugin allows freely all zoom scales, with quit good tile 
resizing.


I am also using self-tiled geotiffs from various sources, addressed via 
localhost. It needs only little tweak of the openlayers plugin to get 
them incorporated.


Greetings,
Andre Joost


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


Re: [Qgis-user] Load OpenStreetMap in qgis as raster layer without the openlayer plugin

2012-08-05 Thread Andre Joost

Am 04.08.2012 18:41, schrieb Andre Joost:

Am 04.08.2012 11:48, schrieb marco bra:

Want to share something, i found useful, about loading gdal generates
tiles
as raster layer in qgis:

http://www.3liz.com/blog/rldhont/index.php?post/2012/07/17/OpenStreetMap-Tiles-in-QGIS

this method can be used also to speedup qgis-mapserver rendering



Sounds simple, but the result looks a bit weired. The latest version of
openlayers plugin allows freely all zoom scales, with quit good tile
resizing.


Just discovered two things:
Changing EPSG to 3857 makes the TMS compatible with Openlayers plugin, 
looking much better. 900913 and 3857 should be principally the same, but 
Qgis makes some reprojection which makes the TMS tiles rather weired in 
3857 projects.


And with TMS I can use self-made transparent overlay tiles, setting the 
transparency color manually to RGB 0-0-0. Thats the only thing I can not 
do with Openlayers plugin at the moment.


HTH,
André Joost


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


Re: [Qgis-user] failled installation of Profilefromline extension

2012-08-07 Thread Andre Joost

Am 07.08.2012 15:58, schrieb Paolo Cavallini:

Il 04/08/2012 06:56, Andre Joost ha scritto:


I think the plugin isn't compatible with current Qgis version 1.8.0
and needs some care by the author. At least for the Windows platform.

Please open a ticket on:
http://hub.qgis.org/projects/profilefromline


I'm afraid this is only possible after login. But I dont see any 
possibility to register on http://hub.qgis.org/.


I created a OSGeo UserID here:
https://www2.osgeo.org/cgi-bin/ldap_create_user.py
but neither userid, Full name nor Surname are accepted when trying to 
login at hub.qgis.org.


What am I missing?

Greetings,
André Joost


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


[Qgis-user] hub.qgis.org register form?

2012-08-07 Thread Andre Joost

Hi all,

I would like to open a ticket on hub.qgis.org, but can't find a page to 
register for login. I learned that the bug tracking has moved from 
trac.osgeo, and old users have been migrated.


According to this page:
http://hub.qgis.org/wiki/quantum-gis/Bugreports
the user should register for an osgeo account, but that does not work on 
hub.qgis.org.



According to redmine help:
http://www.redmine.org/projects/redmine/wiki/RedmineRegister
there should be a registry form.
Registering on redmine.org does not work for qgis-redmine.

Could anyone registered open a ticket on 
http://hub.qgis.org/projects/qgis-redmine/issues?set_filter=1


THX,
André Joost




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


Re: [Qgis-user] hub.qgis.org register form?

2012-08-08 Thread Andre Joost

Am 08.08.12 08:39, schrieb Alex Mandel:


This is the osgeo user id form
https://www.osgeo.org/cgi-bin/ldap_create_user.py



Yes, I registered there. But that only works for osgeo sites, not the 
hub.qgis pages on redmine :-(


Greetings,
André Joost

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


Re: [Qgis-user] hub.qgis.org register form?

2012-08-08 Thread Andre Joost

Am 08.08.12 09:37, schrieb Alex Mandel:

On 08/07/2012 11:46 PM, Andre Joost wrote:

Am 08.08.12 08:39, schrieb Alex Mandel:


This is the osgeo user id form
https://www.osgeo.org/cgi-bin/ldap_create_user.py



Yes, I registered there. But that only works for osgeo sites, not the
hub.qgis pages on redmine :-(

Greetings,
André Joost



It should work on hub.qgis.org, I just logged in with my osgeo id
without a problem.


I tried now, and it works. I think you have to login in on Osgeo user 
account to set up the account completely.

Thanks for investigating.

Greetings,
André Joost

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


Re: [Qgis-user] failled installation of Profilefromline extension

2012-08-08 Thread Andre Joost

Am 07.08.2012 15:58, schrieb Paolo Cavallini:

Il 04/08/2012 06:56, Andre Joost ha scritto:


I think the plugin isn't compatible with current Qgis version 1.8.0
and needs some care by the author. At least for the Windows platform.

Please open a ticket on:
http://hub.qgis.org/projects/profilefromline
Thanks.


Finally got it working:
http://hub.qgis.org/issues/6168

Greetings,
André Joost

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


Re: [Qgis-user] Black border in raster files

2012-08-10 Thread Andre Joost

Am 10.08.2012 17:03, schrieb Manuel Spínola:

Dear list members,

When working with raster files, sometimes there is a black border with no
data around the map.  How can I handle this in QGIS? I mean, delete it or
set it in a different color.


In Layer Properties, tab Transparency, you can set the transparency to 
RBG: 0-0-0, which makes the black border transparent. The black border 
comes when you georeference a map to another CRS than the original format.


HTH,
André Joost


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


Re: [Qgis-user] Black border in raster files

2012-08-10 Thread Andre Joost

Am 10.08.2012 17:45, schrieb Manuel Spínola:

Sorry André, I am trying but I don't understand.  Where is the RBG in the
Transparency tab.  I am working with Colormap.



One-Color-Band I assume, like SRTM? Then you have to set grey:0 to 100% 
Transparency. But I haven't tested that.


I was testing on three-band-colored Ratser, like normal colored maps have.

Greetings,
André Joost

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


Re: [Qgis-user] how to add member in qgis users map

2012-08-12 Thread Andre Joost

Am 13.08.12 03:57, schrieb zehari:

Dear All.
I tried to be a member of the users qgis map, but when it will add the
location, map location is not showing. so I can not be a member.
how to display the map of my location. Thank's



I'm afraid this is not possible at the moment.
Reason is that Openstreetmap have dropped their osmarender map a few 
months ago, forcing every user of the maps to remove that layer, or get 
an error that prevents the website from working properly.


The Qgis usermap has been updated, but not the add-yourself-map.

I mentioned it before on this mailinng list, but the person responsible 
for the site is not reading this list :-(


Greetings,
André Joost


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


Re: [Qgis-user] XYtools needs Excel python modules

2012-08-13 Thread Andre Joost

Am 12.08.12 03:35, schrieb Noli Sicad:

Richard,

It seems that python27 is installed in Windows in this manner.

C:/python27/lib/site-packages



Well, yes. But Qgis has its own Python. And you have to put your 
packages there. Otherwise Qgis will not find it. Path is:


C:\Programs\Quantum GIS Lisboa\apps\Python27\Lib\site-packages

for Windows XP and C:\Programs (x86)\... for Windows 7.

greetings,
Andre Joost

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


Re: [Qgis-user] XYtools needs Excel python modules

2012-08-13 Thread Andre Joost

Am 13.08.12 08:42, schrieb Healthmaps:

indeed, I have learned this the hard way! It does seems that these
modules could be loaded when the Plugin is loaded but perhaps there
is some reasonable, technical reason why that is not done. Thanks -



The reason is that Qgis sets its own environment variables and does not 
care about any other software installed on the PC.
That has the advantage that it does not spoil any other installed 
program, which might depend on other versions of python, gdal or 
wahtever. Only Microsoft VC++ runtime does not fit into this concept.


Greetings,
André Joost

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


Re: [Qgis-user] XYtools needs Excel python modules

2012-08-13 Thread Andre Joost

Am 13.08.12 09:24, schrieb Healthmaps:

But if one loads XYtools and then has to go back to the OSGEO4
download process again to get the missing modules then couldn't the
OSGEO4 download process be set up to download those modules in the
first place? All I had to do was use the advanced install and check
two modules from a list that had not already been installed where as
many others on that list already had been and were set up as some
general install.  I sort of understood what you wrote, but I guess
not quite.



Well, there are many plugins, and they might depend on many libs, 
perhaps only a special version. As long as you don't install the 
plugins, you would not miss them. Installing *all* from OSGeo4W ended 
for me in a non-working version, because stable and dev versions got 
mixed up.


It would be better if the plugin installer would advise you to rerun the 
OSGeo installer. But if the user has used the standalone installer, he 
would not know what do ...


Not that easy ;-)

Other way would be that the plugin installer comes with the libs by 
itself, and puts them in the site-packages folder if not already there.


Greetings,
André Joost

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


Re: [Qgis-user] QGis crashes when loading unprojecter layer

2012-08-13 Thread Andre Joost

Am 13.08.12 12:31, schrieb zbynek:

Thanks, but I suspect this may be problem caused by windows, not QGis.
Perhaps incorrect settings, but so far no luck finding it


Username with non-ASCII-characters?

Greetings,
André Joost

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


Re: [Qgis-user] Vector/Raster Projection Problem

2012-08-14 Thread Andre Joost

Am 14.08.12 10:21, schrieb Terry Morse:


I'm not sure what to make of the complex pattern which is emerging:


...


I don't get it.



Ok, then try a third, independent view:

Install the Openlayers plugin, open a new project in EPSG:3857 and 
on-the-fly-projection, and load your vector and raster data, and a OSM 
or Google background from OL plugin.


The layer that does not coincide with Openstreetmap or Google 
background, has a wrong CRS.


HTH,
André Joost

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


Re: [Qgis-user] QGis crashes when loading unprojecter layer

2012-08-14 Thread Andre Joost

Am 14.08.12 14:40, schrieb zbynek:

No, everything allright on this front
What should be my PATH avriable in Windows?
currently it is C:\WINDOWS;C:\WINDOWS\SYSTEM, perhaps pointing it to
C:\OSGEO4W would help?


That is not necessary, because it is set in qgis.bat before starting the 
program. But you could add a pause at the end of that batch file to 
see if there are any error messages.


You have full rights on C:\OSGEO4W and all subfolders?

HTH,
André Joost


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


Re: [Qgis-user] some errors with Python connected to launching DB Manager and PostGIS Manager

2012-08-14 Thread Andre Joost

Am 14.08.2012 15:14, schrieb Bartek Wol:


 DBPLUGIN_ERRORS.append( u%s: %s % (name, e.message) )
UnicodeDecodeError: 'ascii' codec can't decode byte 0xbf in position
23: ordinal not in range(128)



Most likely a non-ASCII character in database field name, folder name, 
or in your Windows user name.


HTH,
André Joost


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


Re: [Qgis-user] ECW rasters show up as black squares

2012-08-14 Thread Andre Joost

Am 14.08.12 15:04, schrieb magerlin:

OK - I found the reason myself:

If the ecw is in a folder with national characters in the folder name, it
will show up black!
Otherwise it will show up as it should!

This was not the case with earlier versions of Qgis.

Is it a bug in Qgis or GDAL?


Since Gdal 1.9.0, Gdal does some character encoding by itself. Earlier 
versions left it on Qgis (up to Qgis 1.7.4). So this has to be cleared 
by both developers. Anyway, you can open a ticket for it.


Greetings,
André Joost


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


Re: [Qgis-user] 1 band raster colormap

2012-08-14 Thread Andre Joost

Am 15.08.12 07:22, schrieb Matt Boyd:

Hi Group,
I'm working with some grid data (imported using the zmap format,
effectively 1 band rasters). While the psuedocolor and freakout
options are okay, they don't provide the level of control I would like
over the colormap and using the colormap option with more than a dozen
or so colours is somewhat time consuming.

Does anyone know of an easy/quick way to create colormaps in/for QGIS?



You know the plugin for that?
http://www.bc-consult.com/free/bcccoltbl1.html
You have to enable experimental plugins and add the repository
http://www.bc-consult.com/free/plugins.xml
manually.

Greetings,
André Joost

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


Re: [Qgis-user] QGis crashes when loading unprojecter layer

2012-08-15 Thread Andre Joost

Am 15.08.12 08:25, schrieb zbynek:

Well, I have full rights and no error is shown after adding pause to the
bat file

Zbynek


So, next try:

Create another Windows user, and try with that the Windows standalone 
installer, which installs to C:\Programs\...


HTH,
André Joost

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


Re: [Qgis-user] QGis crashes when loading unprojecter layer

2012-08-15 Thread Andre Joost

Am 15.08.12 08:51, schrieb zbynek:

Unfortunately I dont have rights to create new windows users. However, QGis
used to work fine on my computer before. The problems started after I
installed several another programs, like Mapnik, some python libraries etc.



I see. But you can rename the .qgis folder in 
C:\DocumentsSettings\username and then try the standalone installer.


My PATH variable for the current user is:

C:\mapnik-0.7.1\lib;C:\Python26;%PATH%

and for all users is:

C:\Perl\site\bin;C:\Perl\bin;%SystemRoot%\system32;%SystemRoot%;%SystemRoot%\System32\Wbem

The C:\Python2.6 and C:\mapnik are not used by Qgis. If you have 
installed them via Osgeo4w, it may interfere. The hard way would be to 
delete the whole C:\Osgeo4w folder and reinstall.


Greetings,
André Joost




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


Re: [Qgis-user] split features

2012-08-15 Thread Andre Joost

Am 15.08.12 13:19, schrieb michael chiverton:

Hi qgisers,

When digitizing in qgis, how is the split features option utilized.
everytime i try to split my features (similar to cut polygons in arcgis) i
get nothing.  it doesnt split the feature.  is there some trick to this
that i am missing?



The layer has to be in editing mode, and you have to right-click to end 
the separating line.


HTH,
André Joost

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


Re: [Qgis-user] Vector/Raster Projection Problem

2012-08-16 Thread Andre Joost

Am 16.08.12 08:13, schrieb Terry Morse:

Thank you for the suggestion, Andre.

I tried to install Openlayers using the plug-in installer, but it appears not 
to be in the official
plug-in repository.


Yes, it is only in the authors repository:

http://build.sourcepole.ch/qgis/plugins.xml

You can add this to the list of your repositories
Python-plugin Installation, second tab, Add...

Or take the zip directly from the page and expand it to your 
C:\DocumentsSettings/username/.qgis/python/plugins folder.

If you haven't done that before, I would suggest the first method.

Greetings,
André Joost

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


Re: [Qgis-user] ID field does not show up

2012-08-19 Thread Andre Joost

Am 18.08.2012 23:43, schrieb Julian Bogdani:

In reference to a previous post and to
http://gis.stackexchange.com/questions/31732/primary-key-field-hidden-on-atributes-tables-addes-to-qgis
here are the files showing the problem.
I'm running QGIS 1.8 on MacOS Snow Leopard.



Hi,

I have tested your database and encountered the same problem.
I think it is because there are no geometry information in your 
database. So far it is only a sqlite database, not a spatialite one.


I have created a new test sqlite database with a point layer, but DB 
Manager would not let me copy your geometryless table to my database.


So I opened your database with qspatialite, and that plugin added tables 
geom_cols_ref_sys, geometry_columns and spatial_ref_sys to it. Now I 
could drag and drop table test from your database to mine using DB 
Manager. And adding that table to the canvas by checking geometryless 
tables, gives the correct table view with ID and text field.


I think the problem will not accur if you create a sqlite database 
within qgis, and start with a geometry layer.


HTH,
Andre Joost


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


Re: [Qgis-user] Stand allone and Osgeo install in a Win 64 environment

2012-08-21 Thread Andre Joost

Am 22.08.12 02:51, schrieb Gerardo Jimenez:

This is a rookie question, When you install Qgis  via the standallone
installer in a win64 environment, it does install a 32 bit version of
Qgis. If you install it via OSgeo Does it install a 64bit version of
Qgis?



As far as I know, there is no 64-bit version of qgis for Windows 7.

Greetings,
André Joost

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



Re: [Qgis-user] qgis fonts

2012-08-22 Thread Andre Joost

Am 22.08.2012 16:04, schrieb skampus:

i see in print composer that the predefined font is MS Shell Dlg2 but i don't
see it in windows font list.
as i'd like to use it also in other application, also to create horizontal
legends to insert in layout, is this font installed only for qgis and
available only to it?


The MSShell Dlg2 font is created by Micorsoft to ensure cross-platform 
programming. It is replaced by the operating system by an appropriate 
local font. You find information on that here:



http://msdn.microsoft.com/en-us/library/windows/desktop/dd374112%28v=vs.85%29.aspx

HTH,
Andre Joost


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


Re: [Qgis-user] KML Error when opening in QGIS

2012-08-23 Thread Andre Joost

Am 23.08.12 09:17, schrieb WRoberts:

Hi All,

I have been opening and working with kml data in qgis for sometime and have
had very few issues. Unfortunately I seem to have run into a problem with a
file sent to from a colleague in the field. The kml in questions opens in GE
no problem and even has a time feature whereby the start and end time is
shown and the user can move the slider to see how and where the device was.
Nice feature but I think it is introducing an error when attempting to open
in QGIS. The kml is a track of a road and was collected using an android app
called GPS essentials. The qgis error states *.kml is not a valid or
recognized data source.

ogrinfo returns
:~$ ogr2ogr -f 'ESRI Shapefile' output.shp Track-082212_83453.kml
ERROR 4: No layers in KML file: Track-082212_83453.kml.
FAILURE:
Unable to open datasource `Track-082212_83453.kml' with the following
drivers.

When I open the kml in gedit I get an xml type structure.



What kind of data is stored in the kml?
We recently had an issue that it may not contain points *and* lines 
together. Ogr2ogr expects either points, lines, or polygons, but not all 
together. Maybe your time data is notr recognized by teh ogr driver as well.


Perhaps you can convert it to GPX format with gpsbabel. The gpx importer 
in Qgis allows data with timestamp.


HTH,
André Joost

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


Re: [Qgis-user] qgis fonts

2012-08-23 Thread Andre Joost

Am 23.08.2012 22:26, schrieb skampus:

thank you for your reply. so if i have wel understood it is a
virtual font that can be changed by sans serif, isn't it?



It depends on your operating system and local language, which font is
actually used:



MS Shell Dlg maps to Microsoft Sans Serif if the machine default UI
language is set to a language other than Japanese. MS Shell Dlg 2
simply uses the Tahoma font regardless of language.


Greetings,
Andre Joost

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


Re: [Qgis-user] question on the calculation of the distance between points

2012-08-27 Thread Andre Joost

Am 27.08.12 13:59, schrieb Sergio Vignali:

I found the problem. I worked with a postgis vector and I obtained a
illegible csv file.
Now I have saved the postgis vector as a shp and the distance matrix works
well.

I have another question, the csv file return a distance as degree (true?),
but if I want a linear distance (m), how can I do?


What Coordinate reference System has your project/your shp?
If you have lat/lon, you will get results in degrees. If you take a 
projected CRS, you get metres (or feet).


Greetings,
Andre Joost

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


Re: [Qgis-user] merge multiple spatialite tables into one

2012-08-27 Thread Andre Joost

Am 27.08.2012 23:44, schrieb Etienne Tourigny:

Hi all,

I have a number of spatial tables in spatialite DB, each with similar
data, that I want to merge into a single table. I don't want to join
them, but have a single table/view with data from all tables.

I know this can be achieved through sql commands, but is there an easy
(GUI) way to insert content from one table into another?



Select one Layer to be copied from in the layer list
select all members by rectangle,
Edit/Select objects
Select the Layer to be copied to in the layer list
switch to edit mode
Edit/Insert objects
unselect all elements

The attribute tables of the layers should have the same structure.

HTH,
Andre Joost


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


Re: [Qgis-user] nadgrids beta2007

2012-08-28 Thread Andre Joost

Hi,

looking at the CRS below, there is no +towgs84-parameter.

Current Qgis has the following string for EPSG:31466, which is 
Gauss-Krueger-2:


+proj=tmerc +lat_0=0 +lon_0=6 +k=1 +x_0=250 +y_0=0 +ellps=bessel 
+towgs84=582,105,414,1.04,0.35,-3.08,8.3 +units=m +no_defs


This was changed some time ago. Perhaps this is already sufficent for 
your needs.


The +towgs84 values vary across Germany. Thats what beta2007 is for. But 
within one state a constant value should be sufficent in most cases.


You can find other towgs84 parameters here:
http://forum.openstreetmap.org/viewtopic.php?id=12723
support.esri.de/files/support/KoordinatensystemeInDeutschland.pdf
http://osgeo-org.1560.n6.nabble.com/DHDN-Gauss-Krueger-to-WGS84-td3847546.html



Greetings,
André Joost



Am 28.08.2012 15:29, schrieb Bernhard Ströbl:

Hallo Sylvia,

this is an English speaking list
Which version of QGIS are you using?
I can confirm that the +nadgrids... parameter is missing in 1.7.4 if I
want to apply my custom CRS to a layer on Windows, but it stays in 1.8.0.

Bernhard

Am 28.08.2012 14:01, schrieb Sylvia Preuß:

Liebe Quantum Gis Benutzer,

Ziel ist es, eine csv-Datei mit GK2-Koordinaten (NRW) On The Fly in
Quantum Gis in ETRS89/UTM Zone 32N

zu projizieren. Mit folgenden 2 Beispielen aus vorhanden
Koordinatensystemen reicht die

Genauigkeit leider nicht aus.

a.csv

rechts;hoch;attr

2591543,00;5654282,00;a



1.

Projekteinstellungen

+proj=utm +zone=32 +ellps=WGS84 +datum=WGS84 +units=m +no_defs

WGS84; 32632

Räumliches Bezugssystem des Layers

+proj=tmerc +lat_0=0 +lon_0=6 +k=1 +x_0=250 +y_0=0 +ellps=bessel
+datum=potsdam +units=m

+no_defs

DHDN Gauß-Krüger Zone 2;31466

Abweichung ca. 4 m



2.

Projekteinstellungen

+proj=utm +zone=32 +ellps=GRS80 +units=m +no_defs

ETRS89/UTM Zone 32N; 25832

Räumliches Bezugssystem des Layers

+proj=tmerc +lat_0=0 +lon_0=6 +k=1 +x_0=250 +y_0=0 +ellps=bessel
+datum=potsdam +units=m

+no_defs

DHDN Gauß-Krüger Zone 2;31466

Abweichung ca. 150 m

Deshalb möchte ich in QGIS ein benutzerdefiniertes Koordinatensystem
erstellen mit nadgrids

beta2007.gsb

Folgende 2 Varianten habe ich z. B. angelegt.

+proj=tmerc +lat_0=0 +lon_0=6 +k=1 +x_0=250

+y_0=0 +ellps=bessel +units=m +no_defs +nadgrids=C:\Pfad\zu\beta2007.gsb

+proj=tmerc +lat_0=0 +lon_0=6 +k=1 +x_0=250

+y_0=0 +ellps=bessel +datum=potsdam +units=m +no_defs
+nadgrids=C:\Pfad\zu\beta2007.gsb

Nachdem ich Textdatei (a.csv) als Layer importieren ausgeführt habe,
Layereigenschaften -

Allgemein auswähle und unter KBS angeben das benutzerdefinierte
Koordinatensystem auswähle,

werden die +nadgrids=C:\Pfad\zu\beta2007.gsb nicht mit angezeigt,
sondern die Parameter auf

+proj=tmerc +lat_0=0 +lon_0=6 +k=1 +x_0=250 +y_0=0 +ellps=bessel
+units=m +no_defs

reduziert. Überschreiben lässt sich diese Zeile nicht.

In das Feld Initialisierungsfunktion kann ich alles komplett einfügen
jedoch reagiert QGIS nicht

darauf.

Wie kann ich die nadgrids-Funktion On The Fly verwenden? Wie muss das
benutzerdefinierte

Koordinatensystem aussehen?

Viele Grüße Sylvia




__ Information from ESET Mail Security, version of virus
signature database 7424 (20120828) __

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


Re: [Qgis-user] creating .gpx file strips out al the attributes

2012-08-28 Thread Andre Joost

Am 28.08.2012 16:40, schrieb M.E.Dodd:

The 'save as' command in qgis seems to strip out attribute data when
creating files of certain sorts such as .gpx and also gives problems
with .kml where the markers are not identified with any of the
attributes.  Are there any workarounds for these problems?

More detail on the .gpx issue, it will produce a .gpx file if you
select 'skip attribute creation' but if you don't select this then it
fails with the error message: Export to vector file failed. Error:
creation of field tree_id failed (OGR error: Field of name 'tree_id'
is not supported in GPX schema. Use GPX_USE_EXTENSIONS creation
option to allow use of theextensions  element.)

It appears to be quite a helpful error message except that I can't
see anywhere to Use GPX_USE_EXTENSIONS creation option



Well, just do as you are told:
Insert GPX_USE_EXTENSIONS=yes in the layer field, and the GPX creation 
works.


More about that here:
http://www.gdal.org/ogr/drv_gpx.html

HTH,
André Joost

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


Re: [Qgis-user] Qgis 1.8 - Sextante plugin doesn't install - corrupt

2012-08-29 Thread Andre Joost

Am 29.08.12 12:56, schrieb Paolo Cavallini:

Il 29/08/2012 12:48, Pietro Rossin ha scritto:


Do you know how to completely remove all dirs and settings from my pc that
deal with qgis?


Hi Pietro,
I think the issue is with your user dir, not with the installation.


In case you don't know where to look, its:
C:\DocumentsSteiings\username\.qgis on Windows XP
C:\users\username\.qgis on Windows 7
Just delete or rename the directory *before* installation.

Greetings,
André Joost


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


Re: [Qgis-user] qwt5.dll error with Qgis 1.8.0.

2012-08-30 Thread Andre Joost

Am 30.08.12 14:05, schrieb Corina Tudorache:

Hi,

Has anyone encoutered problems launching the Qgis 1.8.0.? I got the
message The program can't start because qwt5.dll is missing from your
computer. Does anyoane know how to solve this?



Yes, there are several bug reports already:

http://gis.stackexchange.com/questions/31038/qgis-1-8-cant-start-due-to-missing-qwt5-dll-library?lq=1

HTH,
André Joost


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


Re: [Qgis-user] Plugins

2012-09-03 Thread Andre Joost

Am 03.09.12 03:54, schrieb Federico Nadela:

I am unable to install the following plug-ins as they are not listed
in the available list: 1. Point sampling tool 2. Contour Please
advise where I can get them. They are mentioned in How to sample
raster data sets using points in QGIS and  How to generate contours
using point data in QGIS. Thanks Federico M. Nadela



Since Qgis 1.8.0, you have to add the Qgis contributed repository 
manually in the second tab. URL is

http://pyqgis.org/repo/contributed

HTH,
Andre Joost

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


Re: [Qgis-user] Domains darstellen

2012-09-14 Thread Andre Joost

Am 14.09.2012 09:14, schrieb carann00:

I received a .shp with M-Values (M-Werte) of streams.

According to the data issuer, it should be possible to display the domains
contained in the .shp.



It would be helpful to us if you could explain what M-values and 
domains should be in your case.


Greetings,
André Joost


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


Re: [Qgis-user] Layers in qgs file not present in the Layers pane

2012-09-18 Thread Andre Joost

Hi,

Am 17.09.2012 22:08, schrieb Julian Bogdani:

Hello
I've posted a question on gis.stackexchange.comhttp://gis.stackexchange.com
(http://gis.stackexchange.com/questions/33608/layers-in-qgs-file-not-present-in-the-layers-pane),
and as promised there I'm sending here a qgis project file with a phantom layer
to use for test.
The phantom layer is named: plan01_2012 and references to:
./Planimetrie/2012/plan01_2012.tif as you can see in lines 27 and following.
Opening the project with QGIS no error is showed for the missing reference, and
no layer is shown in the Layers pane.


After I put a tif file in the place to be, I could reproduce the error 
(Lisboa and master). But manually adding the tif to a fresh file added 
the following extra lines:


legendlayer drawingOrder=-1 open=false 
checked=Qt::Checked name=plan01_2012 showFeatureCount=0

filegroup open=false hidden=false
legendlayerfile isInOverview=0 
layerid=plan01_201220120829235552845 visible=1/

/filegroup
/legendlayer
/legend

Inserting this to your file after legend updateDrawingOrder=true, 
the project opens normally. Maybe a bug concerning opening older version 
projects.



Checking better I can find a reference of this layer in the Identifiable layer
tab of Project properties.
Saving project as will not purge the file.


If you dont want the layer to be in the project anymore:
Move the project file to another location, or rename/move the unwanted 
tif or the layers folder.
Opening the project will give you the bad layers handling dialogue. 
Close that without actions, and save the project. That should remove the 
unwanted layer from the project.




As you can see in the same file other traces of older files are still present in
the xml, for instance near lines126 and following: a list of vector layer with
snapping turned on. This does not produce any error, but getting them removed
when layer is removed is probably cleaner.


Yes, but thats another -minor- problem.
I have not found a solution for that.

Greetings,
André Joost


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


Re: [Qgis-user] getting statistics from a raster layer

2012-09-18 Thread Andre Joost

Am 18.09.2012 10:32, schrieb Nick Hopton:

Antonio Silva wrote

Following the suggestions I got an error message: Cannot compute bounding
box of cutline. when  cutting the raster.


Just checking, but the raster layer and the vector polygon layer do have the
same CRS? You can't cut a raster with a vector unless both have the same
native CRS. In other words, both layers must align properly on the QGIS
screen with on-the-fly CRS transformation turned off.


I guess that is the only case where on-the-fly should be *off*. Perhaps 
that should better be added to the error message?


Greetings,
Andre Joost

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


Re: [Qgis-user] getting statistics from a raster layer

2012-09-19 Thread Andre Joost

Am 19.09.2012 05:11, schrieb Antonio Silva:



Now I'm getting: Warning : the input vector layer has a SRS, but the
source raster dataset does not.
Cutline results may be incorrect.


So, what is going wrong? The asc (raster file) and the shape with the
polygon can be downloaded at http://dl.dropbox.com/u/755659/TSM.rar


The gdalwarp command does not know anything about the CRS you set inside 
Qgis. So you have to apply the CRS to the raster file first:


gdalwarp -t_srs EPSG:4326 32610_2.asc 32610_2.tif

With that fully flavoured Geotiff you can do all necessary gdal operations.

HTH,
André Joost

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


Re: [Qgis-user] Can't add kml-file to QGIS

2012-09-20 Thread Andre Joost

Am 20.09.2012 14:06, schrieb Johan Nilsson:

I have exported some track-logs from a Android app called *'GPS-Essential'* and
I can add them to Google map and to Google Earth. But when I triy to add
(Layer--Vector Layer to QGIS i get this message:

  /home/joni/GIS/GPSE/kml/Track-09_19_12 11_42_21.kml is not a valid or
recognized data source



Can you open the file with a text editor?
Qgis does not like folders with mixed content (points, lines and/or 
polygons). Furthermore, ExtendedData tags can not be read.




Are there any other tools to convert to for instance shape-files.
GPS-Essential save their data in a sqlite-file, so I can export from
asql-manager to. I don't know how I open a sqlite db in QGIS either.


Just as simple as Add new spatialite layer, if it is a spatialite sqlite 
database. Otherwise it would be a non-spatial layer. You can try Qgis DB 
Manager to look inside the database.


Has GPS-Essential any other output options? I would assume GPX, beeing 
standard in GPS data exchange. At least Google Earth does IIRC.


Greetings,
André Joost

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


Re: [Qgis-user] Measuring unit of $lenght / Unidad de medida de $lenght

2012-09-20 Thread Andre Joost

Am 20.09.2012 19:37, schrieb Pablo Schweitzer:

Thanks Alex...
Perhaps the unit of measurement is degrees. In Ecuador the circumference of
the earth is 40,076 km. 40076/360 ° = 109.79. But the equivalence degrees =
km varies with latitude and longitude. So use a conversion factor is very
difficult in large countrys lake Argentina :-(

In

You can change the unit of measure?



It just depends on the Coordinate reference Systems (CRS) you use.

WGS84 lat/lon ist in degrees, and most projected CRS are in meters (or 
feet in some countries). Only Google Mercator has no real unit of mesure.


You can have a layer in lat/lon CRS, but the project set to a projected 
CRS using metres (checking on-the-fly-projection in settings/Project 
Settings). Measuring is always done in the *project* CRS. Just check out 
what projected CRS is common in your country. At least UTM (with correct 
Zone) applies world wide.


HTH,
Andre Joost

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


Re: [Qgis-user] Fwd: Can't add kml-file to QGIS

2012-09-22 Thread Andre Joost

Am 20.09.2012 20:37, schrieb Johan Nilsson:

Sorry, I just mailed to André and not the list. I don't know why...but here
it come.



Ok, just for the record my answer:

The gx:coord might kill the kml import in Qgis. If your software does 
not offer export to other formats, load the data into Google Earth, and 
try gpx export from there.


For the sqlite database:
Qgis can also read delimited text (such as csv) with columns for x and y 
coordinates. It should be possible to export in such a way from 
non-spatialite sqlite databases, but I have no experience with that.


Greetings,
André Joost

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


Re: [Qgis-user] Normal mdb support possible for normal people?

2012-09-22 Thread Andre Joost

HiBernd,

apart from the solution you mention, MS Access database tables can also 
be accessed via the evis plugin. But this is only a one-way-importer.


It should be possible to connect to MDBs the same way as postgis and 
spatialite databases. I think the problem comes with database 
synchronisation and parallel working on the same database.


In such cases, the ultimate answer is: You can have what you want, if 
you pay a developer for it.


Greetings,
André Joost

Am 22.09.2012 00:59, schrieb Bernd Vogelgesang:

Hi there,
from a talk at the German User Meeting today in Kassel (thanx to Claas
for the organization), i got the impression that ONE important thing in
qgis is still missing:
Direct support for normal access databases!

Personal geodatabases work like a charm now (many thanx for this!), but
i was told, that a lot of people who would be the perfect target group
for qgis, still work on a completely gis-free level, dealing with their
data in normal access databases or even worse formats.

To catch those people and show them the light, it seems to me to be
crucial, that qgis would be able to add/join/edit normal tables from
normal access database as well without having to do such odbc-magic
apprx. 99% of the world population have never heard of.

Here
http://osgeo-org.1560.n6.nabble.com/direct-mdb-read-in-QGis-td4637313.html
i found a solution for geeks, but how about those people like me or
john doe, who have no idea about how to compile gdal with other stuff
but are merely able to do some gis work?

I couldn'd find a feature request on the hub on this matter, so i wonder
if this would be a good feature request, or whether there are technical,
legal or political constraints preventing such a support so far.

As far as i understand ESRI personal geodatabases are just some pimped
access databases, so the impossibility to just load such in qgis is a
mystery to me.

Can anybody shed some light on this issue?





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


Re: [Qgis-user] Fwd: Normal mdb support possible for normal people?

2012-09-22 Thread Andre Joost

Am 22.09.2012 09:17, schrieb Johan Nilsson:


There is another thing with 'Personal geodatabase' and that is that ESRI
don't recommend to use it in their documentation because it slow and get
really slow if they are bigger and the absolute size are limited.


Yes, that's true. Spatial index will not be possible on MDBs (as well as 
on spataialite). But MS Access is widely spread, so a connection would 
be highly appreciated. And MDBs are easily portable (again, as well as 
spatialite). Thats a great advantage to Postgis.


Greetings,
Andre Joost

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


Re: [Qgis-user] Fwd: Normal mdb support possible for normal people?

2012-09-22 Thread Andre Joost

Am 22.09.2012 09:43, schrieb Johan Nilsson:

Okey. I'm new to database use i GIS and have only used file database that
ESRI recommend. But if mdb are a propretarian and only work well with MS
access, how can it then be highly portable?



I thought of portable in the sense of taking a database from one 
computer to another. MDB  and sqlite are just one file, Shapefile a 
couple of files, and PostgreSQL/Postgis is very complicated to 
share/take with you or make a security copy.


Greetings,
André Joost

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


Re: [Qgis-user] Fwd: Normal mdb support possible for normal people?

2012-09-22 Thread Andre Joost

Am 22.09.2012 13:47, schrieb Micha Silver:

On 09/22/2012 10:27 AM, Andre Joost wrote:

 Am 22.09.2012 09:17, schrieb Johan Nilsson:


 There is another thing with 'Personal geodatabase' and that is that ESRI
 don't recommend to use it in their documentation because it slow and get
 really slow if they are bigger and the absolute size are limited.


 Yes, that's true. Spatial index will not be possible on MDBs (as well as on
 spataialite). But MS Access is widely spread, so a connection would be highly
 appreciated. And MDBs are easily portable (again, as well as spatialite).
 Thats a great advantage to Postgis.



I'm not sure I understood your comment, but spatial indexing is definitely
supported in Spatialite using the R*Tree structure.


I referred to the spatialite 2.1 manual still first in Google search.

I guess its not fully supported by the stable Qgis 1.8.0.
In DB Manager, I have an entry Spatial Index, but get an error
no such module: VirtualSpatialIndex. Qspatialite throws an error for 
the same reason, and a message No spatial index defined.


I read that spatialitegui might solve the problem, but I want to work 
inside Qgis. So still nothing for normal people ;-)


Using Master I get other errors about missing pyspatialite.

Gruß,
André Joost

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


Re: [Qgis-user] Fwd: Normal mdb support possible for normal people?

2012-09-22 Thread Andre Joost

Am 22.09.2012 14:57, schrieb Micha Silver:



I have a feeling that QSpatialite is somewhat behind. I'm using spatialite 3.0
with the spatialite_gui 1.5 and there you have access to the new format for
making use of spatial indexes.

The problem is that, unlike PostGIS, spatial indexes are not used automatically.
After you create a spatial index on a table, you must then construct your query
to make use of it. This is certainly non-intuitive for normal people.



I would surely use those spatial index features if they are fully 
incorporated in Qgis. In the meantime, I don't wont to spoil my existing 
databases with external programs. For large datasets, I still can export 
to my Openstreetmap Postgis database, which works fine.


Ok, but the topic here is not about spatialite or Postgis databases, but 
MS Access ones.


Greetings,
André Joost

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


Re: [Qgis-user] color ramp plugin broken ?

2012-09-23 Thread Andre Joost

Am 23.09.2012 17:07, schrieb Andrea Peri:

Hi,
try-ing to install the plugin Color-Ramp.
I see this error:

The plugin is broken, Python said:
socket error.

I try to install it on qgis-dev (58ba3f0) from osgeo-setup.

Anyone has succesfull installing it ?


I guess you talk of the colorrampmanager plugin.

Installs here with no error on master 93ad1d0.
But I have no idea how to use it :-(
Still experimental...

Greetings,
André Joost

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


Re: [Qgis-user] color ramp plugin broken ?

2012-09-24 Thread Andre Joost

Am 23.09.2012 21:53, schrieb Etienne Tourigny:


I haven't made any docs yet, I though it was straight-forward to use,
but I guess not.



As a software user, I can tell you that this almost never works ;-)



First you select the package you want

-  Use gradients that ship with qgis -  uses the minimal selection
laready present
-  QGis selection -  free to distribute selection, about 800 gradients
- Full cpt-city selection -  all gradients,(about 6000)

Next you select the installation folder - if you are the only user,
you can select your profile folder $HOME/.qgis

Then you click Update, package is downloaded and installed.

Go to the style manager-Color ramps and add a new ramp cpt-city,
you can browse by selection of by author.

Every 7 days the plugin looks for updates, and you can manually check
by clicking update. But this shouldn't happen too often.


You should add that it looks for updates of the color ramps, not updates 
of the plugin itself ;-)




There ya go!



What about a little help button at the bottom with this information?

Greetings,
André Joost

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


Re: [Qgis-user] QT-Designer

2012-09-24 Thread Andre Joost

Am 24.09.2012 14:36, schrieb Sylvia Preuß:


how can I create a *.ui file with qt-designer? I want to create a new
object with attributes and would like to use my own form to insert
the attributes.

C:\Programme\Quantum GIS Wroclaw\apps\Python27\sip\PyQt4\QtDesigner
is installed. But I don’t know how to get it started.


No, that won't help you. You need the qt4-dev package from the 
osgeo4w-setup-Installation. It will not harm your standalone Qgis 
Wroclaw Installation.


Once installed you will find designer.exe in C:\Osgeo4w\bin.
To make the ui usable in qgis, you have to use the same field names as 
in your data.


Here are some blogs about designing ui:
http://www.sourcepole.ch/foss4g/en/forms.html
http://woostuff.wordpress.com/2011/09/05/qgis-tips-custom-feature-forms-with-python-logic/



HTH,
André Joost

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


Re: [Qgis-user] QT-Designer

2012-09-24 Thread Andre Joost

Am 24.09.2012 16:05, schrieb Bernd Vogelgesang:



If anyone knows an easier way to get hands on the QT-Designer than
installing this huge creator thing, it would be nice to be told about it.



The Osgeo4w Installer has all you want...
qt4-dev is the package.

HTH,
André Joost

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


Re: [Qgis-user] QT-Designer

2012-09-24 Thread Andre Joost

Am 25.09.2012 02:40, schrieb Etienne Tourigny:


On Mon, Sep 24, 2012 at 8:31 PM, Alister Hood
alister.h...@synergine.com  wrote:


The designer is only 704kb.  Perhaps it should be included in the standalone 
QGIS installer...


+1



It probably has some dependencies though...



Using the Osgeo4w installer, the following packages are selected:
msvcrt
openssl
qt4-devel
qt4-libs
shapelib
zlib

so nothing special I think.

Greetings,
André Joost



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


Re: [Qgis-user] Problem installing Profile plugin

2012-10-08 Thread Andre Joost

Am 09.10.2012 02:23, schrieb William Kyngesburye:

Profile tool is a plugin affected by an incompatibility of PyQwt5
with recent PyQt versions.  It needs to be fixed to use another
graphing toolbox like Matplotlib.  Until then it will be broken in
the current QGIS.




It also does not work on Qgis Master under Windows, but still works with 
1.8.0 there.

The author has promised me to rewrite the tool.

Greetings,
André Joost

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


Re: [Qgis-user] Windows 7 doesn't show attributes in QGIS 1.8

2012-10-18 Thread Andre Joost

Am 18.10.2012 14:11, schrieb Otto Dassau:

Hi,

using qgis 1.8 with windows 7 I cannot see the attributes of a shape file?
The column names are displayed in the attribute tabel, but the attributes
not. Does anybody know a solution for this?


Works fine here.
You have to select objects (e.g. by rectangle) to see the attribute 
values. Without selection the table is empty.


HTH,
André Joost


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


Re: [Qgis-user] Windows 7 QGIS and GDAL problems

2012-10-18 Thread Andre Joost

Am 19.10.2012 00:02, schrieb Ramon Andiñach:


Does anyone have any ideas?



Gdal has recently switched to version 1.9.2.
In the Osgeo4W Installer, you can still select the older version 1.9.1-2 
using advanced install.


HTH,
André Joost

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


Re: [Qgis-user] work with ECW file and custom CRS

2012-10-24 Thread Andre Joost

Am 24.10.12 11:43, schrieb Daniele Bonaposta:

Hi to everyone!
first of all: I'm Daniele, a new qgis user and I'm glad to belong to this
list!

I need to display some satellite images in ecw format, I've read that is
possible from qgis 1.8 but It looks like isn't true, besides qgis 1.7.4
on-line docs don't speaks about it... How I can display these images?



ECW support needs a special driver.
On Windows, you need the osgeo4w-setup for this, and select advanced 
install, View: full. There you find the package gdal-ecw. mark that and 
Qgis, to get a Qgis version with ECW support.


See also:
http://www.gdal.org/frmt_ecw.html
I'm not sure if you have to install the ECW SDK too.

HTH,
André Joost

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


Re: [Qgis-user] Error installing Qgis-dev using OSGEO4w

2012-10-25 Thread Andre Joost
For a clean install, rename your existing C:\OSGeo4w folder, and make a 
new install in a new folder, with only qgis-dev selected in advanced 
installation.


HTH,
André Joost

Am 25.10.2012 17:14, schrieb Alexandre Neto:

I have

gdal15.dll, gdal18.dll and gdal19.dll in C:\OSGeo4W\bin.

I don't find any repeated files regarding gdal anywhere in my system drive.

On Thu, Oct 25, 2012 at 12:56 PM, Andreas Neumanna.neum...@carto.netwrote:


Hi,

are there perhaps two or more gdal dlls on your system? Can you check on
your complete C drive and see if there are more dlls around for gdal?
Sometimes this is the cause of such problems.

Andreas


On Thu, 25 Oct 2012 12:33:03 +0100, Alexandre Neto wrote:


Trying to install qgis-dev (1.9.0-93 or 1.9.0-93) using Osgeo4w
installer, in windows vista 32bit, gives me the attached error:

Translating the best I can, it's something like:

  Not possible to find procedure entry point ...bla bla bla... in the
gdal19.dll dynamic library.

Alexandre Neto



--
--
Andreas Neumann
Böschacherstrasse 10A
8624 Grüt (Gossau ZH)
Switzerland
__**_
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



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


Re: [Qgis-user] Error installing Qgis-dev using OSGEO4w

2012-10-26 Thread Andre Joost

Am 26.10.12 12:55, schrieb PIERRE Sylvain:



I got already the same but with Windows 7 and the message is Not
possible to find procedure entry point ?GEOPROJ4@@3VQString@@B in the
qgis_core.dll dynamic library Your solution fails.



Looks like the qgis_core.dll is making trouble. If you have both Lisboa 
and master on your computer,

You should have to versions, one 4,6 MB and one 5.5 MB large.
It depends on the path variable, which one is taken. In your case it 
seems to be the wrong one.

What happens if you rename the older one?

HTH,
André Joost

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


Re: [Qgis-user] Error installing Qgis-dev using OSGEO4w

2012-10-26 Thread Andre Joost

Am 26.10.12 13:09, schrieb Andre Joost:

Am 26.10.12 12:55, schrieb PIERRE Sylvain:



I got already the same but with Windows 7 and the message is Not
possible to find procedure entry point ?GEOPROJ4@@3VQString@@B in the
qgis_core.dll dynamic library Your solution fails.



Looks like the qgis_core.dll is making trouble. If you have both Lisboa
and master on your computer,
You should have to versions, one 4,6 MB and one 5.5 MB large.
It depends on the path variable, which one is taken. In your case it
seems to be the wrong one.
What happens if you rename the older one?


By the way, did you start qgis-dev.bat or qgis-dev.exe?

The .bat sets the environmnet variable correctly before starting the exe.

Greetings,
André Joost

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


  1   2   3   4   5   6   >