Re: [gdal-dev] Problem with OGRCreateCoordinateTransformation

2009-04-10 Thread Reinaldo Escada Chohfi
Frank, Could you please build the gdalwin32dev160.zip and make it available, or is someone else that does that? Thanks, Reinaldo At 01:48 PM 4/10/2009, Frank Warmerdam wrote: Reinaldo Escada Chohfi wrote: Thanks Frank, Yes, I do have the proj.dll is in my path. Also, I am looking for the g

Re: [gdal-dev] Problem with OGRCreateCoordinateTransformation

2009-04-10 Thread Frank Warmerdam
Reinaldo Escada Chohfi wrote: Thanks Frank, Yes, I do have the proj.dll is in my path. Also, I am looking for the gdalwin32dev160. Is it available, or we don't need it anymore, just the gdalwin32exe160? I've been using gdalwin32exe141 & gdalwin32dev141. Reinaldo, It appears that a gdalwi

Re: [gdal-dev] Problem with OGRCreateCoordinateTransformation

2009-04-10 Thread Reinaldo Escada Chohfi
Thanks Frank, Yes, I do have the proj.dll is in my path. Also, I am looking for the gdalwin32dev160. Is it available, or we don't need it anymore, just the gdalwin32exe160? I've been using gdalwin32exe141 & gdalwin32dev141. Thanks, Reinaldo At 11:36 AM 4/10/2009, Frank Warmerdam wrote:

Re: [gdal-dev] Problem with OGRCreateCoordinateTransformation

2009-04-10 Thread Mateusz Loskot
Reinaldo Escada Chohfi wrote: > Hello, > > The code compiles because it is part of a bigger program. This is > just the portion on Coordinate Transformation. It doesn't matter actually how big is the program. Howard is referring to this particular assignment: OGRSpatialReference oSourceSRS, oTa

Re: [gdal-dev] Problem with OGRCreateCoordinateTransformation

2009-04-10 Thread Reinaldo Escada Chohfi
Hello, The code compiles because it is part of a bigger program. This is just the portion on Coordinate Transformation. Any additional comment is welcomed. I did not compile GDAL. I am using gdalwin32exe141 & gdalwin32dev141 pre-built GDAL. Thanks for your help. Reinaldo At 01:25 AM 4/1

Re: [gdal-dev] Problem with OGRCreateCoordinateTransformation

2009-04-10 Thread Frank Warmerdam
Reinaldo Escada Chohfi wrote: Hello all, We place this piece of code to test how coordinate transformation works with OGR. OGRSpatialReference oSourceSRS, oTargetSRS; OGRCoordinateTransformation *poCT; double x1, y1; oSourceSRS="EPSG:4326"; oTargetSRS

Re: [gdal-dev] Problem with OGRCreateCoordinateTransformation

2009-04-09 Thread Howard Butler
On Apr 9, 2009, at 9:38 PM, Reinaldo Escada Chohfi wrote: Hello all, We place this piece of code to test how coordinate transformation works with OGR. OGRSpatialReference oSourceSRS, oTargetSRS; OGRCoordinateTransformation *poCT; double x1, y1; oSourceSRS="EPS

[gdal-dev] Problem with OGRCreateCoordinateTransformation

2009-04-09 Thread Reinaldo Escada Chohfi
Hello all, We place this piece of code to test how coordinate transformation works with OGR. OGRSpatialReference oSourceSRS, oTargetSRS; OGRCoordinateTransformation *poCT; double x1, y1; oSourceSRS="EPSG:4326"; oTargetSRS="EPSG:4989"; poCT = O