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, fromstr
brno = os.path.abspath(os.path.join(os.path.dirname(tss.__file__),'LC_FIN_smooth.shp'))
ds = DataSource(brno)
layer = ds[0]
bbox = GEOSGeometry(layer.extent.wkt, 102067) # How to get this SRID?!
gcoord = SpatialReference(str(layer.srs))     # It works, no SRID needed!
mycoord = SpatialReference(4326)
trans = CoordTransform(gcoord, mycoord)
bbox.transform(trans)

I have to perform a transformation, so I need to define a GEOS geometry with a SRID value, otherwise I get an error using the trans method:

<string>:1: UserWarning: Calling transform() with no SRID set does no transformation!
<string>:1: FutureWarning: Calling transform() with no SRID will raise GEOSException in v1.5

My problem is how to obtain the SRID integer having the shape WKT information...is this possible with GEOS, GDAL or some other tool? I got the proper SRID searching on spatialreference.org, but I would like to obtain it from the shape if possible. How can I achieve this?

link|improve this question

75% accept rate
feedback

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
or
required, but never shown

Browse other questions tagged or ask your own question.