Tagged Questions
The OGR Simple Features Library is a C++ open source library (and commandline tools) providing read (and sometimes write) access to a variety of vector file formats including ESRI Shapefiles, S-57, SDTS, PostGIS, Oracle Spatial, and Mapinfo mid/mif and TAB formats. OGR is a part of the GDAL library
3
votes
2answers
164 views
what is the relationship between GDAL, FDO and OGR?
Their documentations are simple and professional.
But they don't mention too much about the relationship between these open source projects.
When should I use which one? And which one is suitable for ...
2
votes
1answer
418 views
GDAL / OGR on the iPhone
I'm working on a project that requires me to either A) Render Shape, Tab and WFS files as MapView overlays, or B) convert them to KML, since I already have a KML renderer working.
The best way to do ...
1
vote
1answer
713 views
Adding custom Feature attributes to ESRI Shapefile with Python
I am seeking a way to take an existing ESRI Shapefile that has a Feature set of 200 countries. Each country Feature has an attribute of "NAME." My objective is to create a Python script that adds an ...
1
vote
2answers
371 views
How can I get the installed GDAL/OGR version from python?
How can I get the installed GDAL/OGR version from python?
I aware of the gdal-config program and are currently using the following:
In [3]: import commands
In [4]: commands.getoutput('gdal-config ...
0
votes
1answer
280 views
Creating Shape Files from SQL Server using Ogr2ogr
I am trying to run the following code in a command window. The code executes, but it gives me no values in the .SHP files. The table has GeographyCollections and Polygons stored in a Field of type ...
0
votes
2answers
112 views
Python crashes when trying to perfrom buffer using OSGEO OGR
I'm trying to run a simple script to manually create some geometry and then perform a buffer on said geometry. However, python will completely crash whenever I try to perform a Buffer operation.
...