Fwd: [gdal-dev] MYSQL Spatial Stored Procedure

2010-07-10 Thread Chaitanya kumar CH
-- Forwarded message -- From: Thomas Joseph Date: Sat, Jul 10, 2010 at 10:30 AM Subject: RE: [gdal-dev] MYSQL Spatial Stored Procedure To: Chaitanya kumar CH Thanks for the rapid response. The exact command I am using to test this: ogrinfo.exe MySQL:spatial,host=awtak1s3,use

Re: [gdal-dev] Hi want to get gdal.jar

2010-07-10 Thread Tamas Szekeres
The Windows binaries found at http://vbkto.dyndns.org/sdk/ should contain the Java bindings. Best regards, Tamas 2010/7/10 Gurpreet singh > Hi, >Want to know if the JAR file of Gdal is available for > download...I dont want to make it by swig but if I can get it > directly..

[gdal-dev] Projection Definition String

2010-07-10 Thread Francois Maass
Good day! I am trying to set the Projection Definition for a GDALDataset as follows (from the GDALWarp API): const char *pszDstWKT = NULL; OGRSpatialReference oSRS; oSRS.SetUTM( 11, TRUE ); oSRS.SetWellKnownGeogCS( "WGS84" ); oSRS.exportToWkt( &pszDstWKT ); if(GDALSetProjection(srcData

Re: [gdal-dev] Projection Definition String

2010-07-10 Thread Frank Warmerdam
Francois Maass wrote: Good day! I am trying to set the Projection Definition for a GDALDataset as follows (from the GDALWarp API): /const char *pszDstWKT = NULL;/ /OGRSpatialReference oSRS;/ /oSRS.SetUTM( 11, TRUE );/ /oSRS.SetWellKnownGeogCS( "WGS84" );/ /oSRS.exportToWkt( &pszDstWKT );/

RE: [gdal-dev] Projection Definition String

2010-07-10 Thread Francois Maass
Hi Frank Thank you for your suggestion. I realized that I opened my dataset with GA_ReadOnly, and now changed it to GA_Update. Now another issues presented itself: When I execute these statements on a .pix image, it works beautifully. When I execute these statements on a .TIF image, it still giv