Tagged Questions

2
votes
2answers
107 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
2answers
272 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
1answer
671 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
0answers
17 views

Getting SRID from shapefile

I'm importing an ESRI shapefile in GeoDjango in the following way: import os from TSS import tss from django.contrib.gis.gdal import * from django.contrib.gis.geos import Polygon, GEOSGeometry, ...
0
votes
2answers
49 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 ...