Tagged Questions
2
votes
0answers
25 views
How do I get the domain from an OGRSpatialReference?
I would like to know what the projected bounds are for a spatial reference using OGRSpatialReference. Is there some way to use the GetProjParm method to get this information?
An example of what ...
1
vote
0answers
31 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 = ...
5
votes
1answer
224 views
Slow FileGDB Performance in GDAL
I am attempting to write many ASPRS LAS point files into an ESRI File Geodatabase using my compilation of GDAL 1.9.2. The FileGDB driver for GDAL/OGR appears to be incredibly slow when writing large ...
1
vote
3answers
231 views
Getting Field value for a given coordinate out of ESRI Shapefile using GDAL/OGR
I have a bunch of ESRI shapefiles that contain Land Cover data across Canada (provided by Geobase). I need to query the files and obtain the value of a certain field (called COVTYPE) in a given ...