我在SGIS数据库中保存了一些多功能数据,预测SRID 27700。
geom = models.MultiPolygonField(srid=27700)
我想展示开放式StreetMap的形状,即与SRID 900913(我想?)的形状。
因此,有两个问题:
- How do I change the code below to output with the right SRID for OpenStreetMap?
- How can I change the Django code below to give me a nice json object, ready to display as a polygon?
area = get_object_or_404(soa.objects, code=my_code)
polygon = area.geom
return render_to_response( area.html , { area : area }, context_instance = RequestContext(request))
如果这个问题没有意义,则道歉——我对GeoDjango来说很新。