Re: [gdal-dev] Constructing GDAL_WMS XML files for TMS servers

2013-02-12 Thread Even Rouault
Le mardi 12 février 2013 20:23:02, Carl Godkin a écrit : > Hi again, > > A couple of weeks ago I learned how to use gdalinfo and gdal_translate to > make the XML service files used by the WMS drivers. > > For instance, > > gdalinfo "WMS:http://mesonet.agron.iastate.edu/cgi-bin/wms/nexrad/n0r.cg

[gdal-dev] Constructing GDAL_WMS XML files for TMS servers

2013-02-12 Thread Carl Godkin
Hi again, A couple of weeks ago I learned how to use gdalinfo and gdal_translate to make the XML service files used by the WMS drivers. For instance, gdalinfo "WMS:http://mesonet.agron.iastate.edu/cgi-bin/wms/nexrad/n0r.cgi"; produces a list of subdatasets and any of these can be turned into G

Re: [gdal-dev] Reworking the rasdaman driver

2013-02-12 Thread Even Rouault
Le mardi 12 février 2013 18:11:18, Fabian Schindler a écrit : > Dear devs, > > I've been tasked to improve or rewrite the current rasdaman driver > implementation as it currently suffers a number of drawbacks: > > * it is quite slow (compared to other drivers and other rasdaman > connection

[gdal-dev] Reworking the rasdaman driver

2013-02-12 Thread Fabian Schindler
Dear devs, I've been tasked to improve or rewrite the current rasdaman driver implementation as it currently suffers a number of drawbacks: * it is quite slow (compared to other drivers and other rasdaman connection techiques) * it does not support creation of new rasters within the datab

Re: [gdal-dev] Weird results with gdaldem slope

2013-02-12 Thread Hare, Trent
George, That sounds like a resampling issue (either from up/down sampling or in your case from the reprojection stage). During projection, I *don't*recommend using a nearest neighbor method but a bilinear (or "higher") for DEMs. Nearest neighbor is generally the default for applications because i

Re: [gdal-dev] (ogr2ogr) Trying to export data into remote MySQL - anyone know how to set up remote configurations on the host side?

2013-02-12 Thread Travis Kirstine
Muskie, I've never had the opportunity to use MySQL with ogr but my guess is that you need to do some thing like: GRANT USAGE ON cdfofprd.* TO dbreader@'hostname' IDENTIFIED BY 'some_pass'; GRANT Select, Insert, Update, Delete ON cdfofprd.* TO dbreader@'hostname'; FLUSH PRIVILEGES; Wh

[gdal-dev] About building GDAL on Android

2013-02-12 Thread Chaabani Mootez
Hello, I'm trying to build GDAL on Android (Windows 7) using Mingw (msys) and and Android NDK r8d. I found only 2 tuto and they didn't work for me (one of them is posted here: http://lists.osgeo.org/pipermail/gdal-dev/2012-April/032485.html ). Everytime I run make command errors appears such as :

[gdal-dev] (ogr2ogr) Trying to export data into remote MySQL - anyone know how to set up remote configurations on the host side?

2013-02-12 Thread Muskie
Hi, I touched on this issue I am having here: http://osgeo-org.1560.n6.nabble.com/Anyone-tried-using-ogr2ogr-on-a-remote-MySQL-db-td5030802.html Basically I'm trying to give our host DBA the information necessary to configure our remote MySQL database for ogrinfo and ogr2ogr access. I've been tr