Tagged Questions

GDAL (Geospatial Data Abstraction Library) is a library for reading and writing raster geospatial data formats.

learn more… | top users | synonyms

6
votes
3answers
347 views

Speeding up iterating over Numpy Arrays

I am working on performing image processing using Numpy, specifically a running standard deviation stretch. This reads in X number of columns, finds the Std. and performs a percentage linear stretch. ...
6
votes
1answer
2k views

Rasterizing a GDAL layer

Edit Here is the proper way to do it, and the documentation: import random from osgeo import gdal, ogr RASTERIZE_COLOR_FIELD = "__color__" def rasterize(pixel_size=25) # Open the data ...
5
votes
1answer
270 views

Creating contour lines using GDAL and Delphi

I am trying to create isolines using Delphi and GDAL18. For that I am using the following code: layer:= OGRCreateLayer( ogr_ds, PAnsiChar(WideStringToString('contour')), nil, ogr.wkbLineString, nil); ...
4
votes
2answers
136 views

Launching python subprocess has different behavior depending on launcher

I'm attempting to launch Python 2.5 from Python 2.6. The reason for this is a compiled library I'm trying to use (GDAL) isn't supported for the version of Python distributed with another program ...
4
votes
2answers
2k views

GDAL install on Mac OS X Lion

I'm trying to install GDAL 1.7.1 on Mac OS X Lion using: python setup.py build python setup.py install and get the error: running build running build_py running build_ext building 'osgeo._gdal' ...
4
votes
2answers
2k views

Obtain Latitude and Longitude from a GeoTIFF File

Using GDAL in Python, how do you get the latitude and longitude of a GeoTIFF file? GeoTIFF's do not appear to store any coordinate information. Instead, they store the XY Origin coordinates. ...
4
votes
3answers
544 views

Easy methods of installing and having access to the GDAL library?

The GDAL library homepage implies that people who arrive there already know what they are doing. I work with ArcGIS, and am unfamiliar with intricate setups with library dependencies as GDAL ...
4
votes
3answers
3k views

Encoding problems with ogr2ogr and Postgis/PostgreSQL database

In our organization, we handle GIS content in different file formats. I need to put these files into a PostGIS database, and that is done using ogr2ogr. The problem is, that the database is UTF8 ...
3
votes
1answer
174 views

Problem writing shapefiles with writeOGR in R

I've been getting an error in a script that iterates over some text files in a directory, does some data manipulation and writes to a ESRI shapefile using writeOGR from the rgdal package in R. I keep ...
3
votes
2answers
251 views

Minimum Distance Algorithm using GDAL and Python

I'm trying to implement the Minimum Distance Algorithm for image classification using GDAL and Python. After calculating the mean pixel-value of the sample areas and storing them into a list of arrays ...
3
votes
2answers
162 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
73 views

Incorporating GDAL into MSVS 2008 C++ project

I've been experimenting with GDAL in python and have had some great success in it's use for terrain analysis. My company wants to see if/how GDAL can be used in Visual Studio, as it is their primary ...
2
votes
2answers
228 views

GDAL Raster Output

I'm trying to create a .tif file using GDAL in python. It's creating a file, but saying "no preview available" whenever I browse to it. Right now, I'm just trying to get it to make a copy of the ...
2
votes
1answer
240 views

Numpy - Replace a number with NaN

I am looking to replace a number with NaN in numpy and am looking for a function like numpy.nan_to_num, except in reverse. The number is likely to change as different arrays are processed because ...
2
votes
1answer
409 views

creating elevation/height field gdal numpy python

I would like to create some elevation/heightfield rasters using python, gdal and numpy. I'm stuck on numpy (and probably python and gdal.) In numpy, I've been attempting the following: >>> ...
2
votes
1answer
510 views

Unable to install Python and GDAL (DLL load failed)

I am trying to install GDAL and Python on my Windows 7 workstation. Python-version: 2.6.6 Gdal 1.8 (Visual Visual C++ Studio 2010 Express) I followed the instructions at ...
2
votes
1answer
416 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 ...
2
votes
3answers
964 views

GIS: When and why to use ArcObjects over GDAL programming to work with ArcGIS rasters and vectors?

Im just starting off with GDAL + python to support operations that cannot be done with ArcGIS python geoprocessing scripting. Mainly I am doing spatial modeling/analysis/editing of raster and vector ...
2
votes
1answer
862 views

ogr2ogr from PG to SHP changes data-type in .DBF

UpDate: Yes, that was it! Like mloskot said, the whole tabel needs to be dumped. selecting fields with sql loses information about fuield widths. Thanks, that fixed it! Hi All, I have a problem ...
2
votes
2answers
2k views

Which C++ library for ESRI shapefiles to choose?

Does anyone have an experience in processing (reading) ESRI shapefiles (http://en.wikipedia.org/wiki/Shapefile) from C++? I have found at least 2 open source libraries: ShapeLib C library ...
2
votes
2answers
551 views

Geo question: How to generate a .wld file given some ground control points?

OK, so I have a jpeg and a bunch of ground control points (x/y pixels and corresponding lat/lon references). I'd like to generate a .wld world file to accompany the jpeg, from the command line. My ...
1
vote
1answer
18 views

'module' object has no attribute 'OSMGeoAdmin'

The enviroment is as follows: **Windows 7** PATH=C:\Python27\;C:\Python27\Scripts;C:\Python27\Lib\site-packages\MySQLdb;C:\Program Files\MySQL\MySQL Server 5.5\bin;C:\OSGeo4W\bin **python 2.7** ...
1
vote
1answer
42 views

If You Have A GeoTiff, Would It Be Possible To Transform A Lat/Lon Point To An X,Y Using The GeoTransform?

I'm using the GDAL library. Currently, I can take in an upper left point and an upper right point and chip an image out of the original. What I'd like to do now, is take in two WKT points and ...
1
vote
0answers
93 views

Python GDAL package does not handle rotated raster images correctly

I'm using the Python GDAL package to convert raster images between various formats: ENVI, GeoTIFF, ERDAS Imagine, PCI Geomatics and others. My imagery is UTM, WGS-84 and path-oriented, i.e., rotated ...
1
vote
1answer
119 views

How can I change the resolution of a raster using GDAL?

I am looking for the best way to change the resolution of a GDAL raster dataset. For example, I have a raster that has a pixel size of (30, -30), and I would like to change the pixel size to (5, -5), ...
1
vote
0answers
95 views

Loading MKMapKit overlay tiles from server

The Apple sample code TileMap is great at showing how to add raster image overlays using gdal2tiles, but it depends on having the tile directory on the device. What is the best way to adapt the code ...
1
vote
3answers
417 views

Problems installing rgeos and rgdal on Mac OS X Lion

I'm trying to install the rgeos package (and the rgdal) package. I have a macbook pro running os x 10.7.1 and I have the latest version of R, 2.13.1. I am following the instructions from this site: ...
1
vote
2answers
166 views

Gdal will not import after several installs (Mac OSX)

Using Macports, I've tried to install: gdal, py27gdal, and gdal-grass. All so I can import gdal into python 2.7.2. Neither have been successful. When I type: port list installed I see the ...
1
vote
1answer
89 views

save file in XYZ format as vector (GML or shp)

I am using QGIS software. I would like to show value of each raster cell as label. My idea (I don't know any plugin or any functionality from QGIS which allow to it easier) is to export raster using ...
1
vote
0answers
42 views

Need advice on libraries/strategy to improve performance of my ruby based GIS tool [closed]

I have created a web application that dynamically renders GIS data (ie polygons, lines,multi-polygons-etc) for display in a Google Maps application using tiled images (ImageMapType). The application ...
1
vote
1answer
70 views

Is there a GDAL build available for Python 3.2 Windows 7 64-bit?

I am interested in using GDAL for Python 3.2 Windows 7 64 bit. I have not come across a suitable build. If there is not a build available, how would I go about building GDAL myself for Python 3.2 ...
1
vote
1answer
139 views

Only one line of this batch file will run

gdal_merge -o C:\test\RasterMerge\p023r027\p023r027_7t20010623_z16_merged.tif -seperate -q -v C:\test\RasterMerge\p023r027\p023r027_7t20010623_z16_merged.tif ...
1
vote
2answers
132 views

Problem importing USDA Crop Data Layer (GTIFF) in R using raster() package

I've downloaded the USDA Crop Data Layer (data available here, note large file: http://www.nass.usda.gov/research/Cropland/SARS1a.htm) and want to import it into R for analysis. I've imported other ...
1
vote
2answers
174 views

Problem creating CFloat64 ENVI files with GDAL 1.6.1

I'm trying to write ENVI CFloat64 files with GDAL: import numpy from osgeo import gdal from osgeo.gdalconst import GDT_CFloat64 a = numpy.zeros((1000, 1000), dtype='complex64') driver = ...
1
vote
1answer
133 views

mysterious error from foreach

On my first foray into foreach I am getting this error: Error in function (handle) : no function to return from, jumping to top level I get one of these for each worker. I am using the ...
1
vote
2answers
456 views

rgdal efficiently reading large multiband rasters

I am working on an image classification script in R using the rgdal package. The raster in question is a PCIDSK file with 28 channels: a training data channel, a validation data channel, and 26 ...
1
vote
2answers
261 views

Installing GDAL via buildout on MacOSX

I'm trying to install GDAL via buildout on MacOSX. I have following config: [gdal] recipe = zc.recipe.cmmi url = http://download.osgeo.org/gdal/gdal-1.7.2.tar.gz extra_options = ...
1
vote
2answers
370 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 ...
1
vote
4answers
703 views

Installing GDAL for Python

I am trying to install GDAL for python on a Windows XP machine (Python 2.6 currently installed) following the instructions at http://trac.osgeo.org/gdal/wiki/GdalOgrInPython (as is mirrored in a ...
1
vote
1answer
982 views

Convert GeoTIFF to JPEG and Extract GeoTIFF Headers in Python

I am making a Python script which will read in a GeoTIFF file, and will do both: convert the GeoTIFF into a static JPEG (that is much smaller in size), and create a separate text file which contains ...
1
vote
3answers
2k views

can't import gdal in python?

I have gdal installed and running on Ubuntu Jaunty but I can't run gdal2tiles because I get the error: Traceback (most recent call last): File "/usr/local/bin/gdal2tiles.py", line 42, in ...
1
vote
1answer
661 views

Using UTM with geodjango

I'm looking into using the UTM coordinate system with geodjango. And I can't figure out how to get the data in properly. I've been browsing the documentation and it seems that the ...
1
vote
2answers
3k views

using GDAL/OGR api to read vector data (shapefile)--How?

I am working on an application that involves some gis stuff. There would be some .shp files to be read and plotted onto an opengl screen. The current opengl screen is using the orthographic projection ...
0
votes
0answers
6 views

Empty outputs with python GDAL

Hello im new to Gdal and im struggling a with my codes. Everything seems to go well in my code mut the output bands at the end is empty. The no data value is set to 256 when i specify 255, so I don't ...
0
votes
0answers
21 views

PIL? Extract all pixels of a given RGB value

Given an image (.tiff or geotiff file) with exactly 22 colors (each with a distinct RGB value), what are the approaches to separate ("filter") them out into 22 separate images, each containing only ...
0
votes
2answers
99 views

Where to begin? Using x,y,z data to display a building lot

I used a builders' level to get x,y,z coordinates on a 110' x 150' building lot. They are not in equally spaced rows and columns, but are randomly placed. I have found a lot of info on mapping and ...
0
votes
2answers
42 views

How to process an uploaded KML file in GeoDjango

I wrote a cmd line routine to import a kml file into a geoDjango application, which works fine when you feed it a locally saved KML file path (using the datasource object). Now I am writing a web ...
0
votes
0answers
49 views

osgeo DLL load failed of a exe program created with py2exe

Good morning I just making an exe file using py2exe of an application containing gdal, I'm using python 2.6 and GDAL 1.8 downloaded from the pythonxy 2.6.6.2. Using py2exe I made the exe file, and ...
0
votes
1answer
58 views

Raster data reprojection from 2D georeferenced raster data array by using GDAL/OGR library

Happy weekend! I have a 2D georeferenced raster data (with a data type of "unsigned char") array. I want to use it as data source to do reprojection by using GDAL/OGR library. In "GDAL Warp API ...
0
votes
1answer
95 views

Trouble loading rgdal in RStudio

Why is rgdal failing to load in RStudio (0.94.110) but not in R (2.13.2)? abarbour% R R version 2.13.2 (2011-09-30) Copyright (C) 2011 The R Foundation for Statistical Computing ISBN 3-900051-07-0 ...

1 2