Tagged Questions
0
votes
0answers
12 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
1answer
28 views
Using the C++ GDAL API how do I set the GDAL_DATA path?
If I want to change the directory of the GDAL_DATA path or point to a different version of a csv file for EPSG numbers how do I do that using the C++ API?
3
votes
1answer
39 views
circle detection on binary image
My image is gray scale image which i have converted to binary by smoothing and then edge detection method. Now i want to place the circle /ellipse on edge detected. I don't know how to proceed ...
0
votes
0answers
65 views
using GDAL/OGR (faster)
Eventually, I was able to get the GDAL installed and compiled correctly using Visual C++ 2010. I even tested some of its methods on some geo-referenced raster files, and it looks like that all is ...
0
votes
1answer
110 views
Any Open source georeferencing library? [closed]
I am using VS 2010, and I want to see is there any open source (preferably c++) library that can be used for georeferencing?
I came across GDAL and QGIS, but I have the hardest time to get them ...
2
votes
1answer
45 views
Create ERDAS IMG Statistics using GDAL C++ API?
I want to create very many ERDAS .img files using GDAL under C++. I don't want to have to process them all in ArcMap to create statistics for them (mainly because ArcMap fumbles when calculating ...
0
votes
1answer
153 views
Most optimal algorithm for contour correctness?
Am creating an app which correctly calculates contours from a DEM file or any height-map given to it. The correctness of the contour holding the most importance, since a person viewing the contours ...
1
vote
0answers
75 views
OSGB36 referenced PNG to Google Earth
I am creating a PNG that is referenced to the OSGB36 datum (1 pixel per 50m easting/northing that is colored according to the result of some calculation code)
I want to display this on Google Earth ...
1
vote
3answers
330 views
How to subset raster image using gdal?
I have read pixel values of an raster image using GDAL libraries in visual studio 2010(vc++).
Now I have to crop the image (subset) according to the grid given in shape file.
I have got a code for ...
5
votes
1answer
213 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
0answers
104 views
gdallocationinfo from C++?
I need a C++ API to convert x,y Image Coordinates in their native projection to output image pixel,line coordnates. I see the gdallocationinfo documentation, but no API for it.
Where in online GDAL ...
1
vote
3answers
219 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 ...
0
votes
3answers
208 views
raster data retrieval from postgis using c++
I have raster data in a postgis server (I am able to see it in qgis).
When I retrieve it and form gtiff image out of it using gdal, the generated image is not correct (there is a coloring problem).
I ...
0
votes
1answer
129 views
requesting tiles without using xml file (gdal - c++)
i have been able to request a specific tile with my xml through gdal lib. However, is there is another way of requesting the tiles from a web server
without using xml ?
i wanna do it directly through ...