I want to present regions on a map inside a webpage. The region should be clickable and highlighted when hovered. I\'am using django so I tend to orient towords matplotlib and other python tools.
My model (partial code): class Observation(models.Model): date = models.DateField() geom = models.PointField()
I am seeking a way to take an existing ESRI Shapefile that has a Feature set of 200 countries. Each country Feature has an attribute of \"NAME.\" My objective is to create a Python script that adds an
I\'m trying to install GDAL via buildout on MacOSX. I have following config: [gdal] recipe = zc.recipe.cmmi
Am having a real problem with the geodjango saving an entry. It produces a \"Error: Access Violation reading 0x???????\"
I would like to implement a location based search, based on the geonames zip code dump. For that, I want to use geodjango, but I have no idea how to implement the geonames data for lookup. I don\'t wa
I\'m building my first GeoDjango project but I\'m kinda desperate. I\'v installed PostgreSQL 9 and PostGis 1.5 through one-click installer on Windows. So everthing is there. I set GEOS_LIBRARY_PATH t
I st开发者_StackOverflow社区ore a PointField field named \"coordinates\" in a model. Then, I consult nearest instances from a given one, in the command interpreter, and print its name and the distanc
I\'m trying to insert some National Grid references into a Django PointField defined as follows: oscode = models.PointField(srid=27700, null=True, blank=True)
I\'m using GeoDjango with MySQL. I use a models.PointField(srid=4326) object, all works fine, the data is correctly saved and retrieved from the database, but when I do a select * from table from开发者