Tagged Questions
0
votes
1answer
14 views
OGR Projection transformation error
I am trying to convert shapefile that was created by FME in EPSG:900913 to EPSG:3857 (I know its the same definition) with OGR in a script.
datasource = ogr.Open(os.path.join(dirname,shapefileName))
...
1
vote
0answers
28 views
how to get correct geo reference system for a VMap
I am new to GIS, trying to read the GeoRef System for VMap by using the following code:
OGRSpatialReference *ref = layer->GetSpatialRef();
if( ref )
{
QString georefSystem = ...
4
votes
2answers
190 views
How do I Capture GDAL projection and create matching output (OGR or GDAL) shape files?
Working in C++, using GDAL and OGR: Depending on what the user has supplied for image input, I need to output point (or other) shape files in the same projection as the input raster images. The ...
2
votes
2answers
138 views
Why are the output point shapefile PRJ files empty?
I have tried evry thing I could find (using C++) to create a new .prj file for an output point shape file using OGR. While I get no compilation or execution errors and ArcMap accepts the file as a ...
3
votes
1answer
146 views
Is there no EPSG code to use for Behrmann equal-area projection in ogr2ogr?
I'm trying to use ogr2ogr to reproject some shapefiles. The projection I wish to use is Behrmann equal-area. I cannot find an EPSG code to use for the '-t_srs' part of the syntax. Is there any way ...
9
votes
2answers
1k views
API documentation for Gdal/Ogr with C#
I want to assign projection to shapefile in my web C# application, for this i am using Gdal/OGR/OSR C# bindings and add osr_csharp.dll and ogr_csharp.dll references. But i am facing some difficulty ...
3
votes
4answers
334 views
Determine Projection
I was given a shapefile at work with the information that it is in Lambert Azimuth Equal Area (LAEA) projection (EPSG 9820). After some research on the web, I found out that EPSG 9820 is a generic ...
