Geodjango: importing data from OSGB_1936, displaying in WGS84?
- by AP257
I have some polygon data saved in a PostGIS database with projection SRID 27700.
geom = models.MultiPolygonField(srid=27700)
I want to display the shapes on OpenStreetMap, i.e. with SRID 900913 (I think?).
So, two questions:
How do I change the code below to
output with the right SRID for
OpenStreetMap?
How can I change the
Django code…