Tagged Questions

6
votes
3answers
351 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 ...
4
votes
2answers
137 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. ...
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 ...
2
votes
2answers
35 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** ...
2
votes
2answers
232 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
241 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
411 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
518 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
3answers
965 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 ...
1
vote
0answers
21 views

Gdal python binding for getting dted json output

I am developing 3d Map for web with webgl and I need some code for generating json from dted tile. In this link there is a statement about this. "To use elevation data with a server other than ...
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
2answers
167 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
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
176 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
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 ...
1
vote
4answers
708 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
986 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
662 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 ...
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
0answers
50 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
2answers
144 views

Using the python gdal module to open images in the same projection but different sizes

I'm not sure this is the correct site for this but, I'm using the gdal.Open() module on python 2.7 to open Landsat GeoTIFF images. They have the same UTM map projection, but different image sizes. ...
0
votes
1answer
160 views

GDAL WriteArray issue

I'm utilizing python GDAL to write a raster data into a .tif file. Here's the code: import numpy, sys from osgeo import gdal, utils from osgeo.gdalconst import * # register all of the GDAL drivers ...
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. ...
0
votes
1answer
223 views

import woes in python

I'm super new on python and i am just deploying an open source app that was done in python and I'm getting a: ImportError: cannot import name DataSource on from django.contrib.gis.gdal import ...
0
votes
1answer
133 views

gdalinfo does not work

The gdalinfo does not work in my Python script Can anyone tell me what the prblem is? I imported all the packages from osgeo, all the other functions work except gdal