Phần tham chiếu không gian OGR của GDAL nên thực hiện thủ thuật. capooti đã cung cấp một câu trả lời tuyệt vời cho một câu hỏi khác trong đó trình bày cách làm dịch chuyển bản dịch từ một shapefile sang WKT. Bạn cũng có thể muốn kiểm tra tài liệu tham khảo lớp . Điều ngược lại chỉ đơn giản là:
from osgeo import osr
srs = osr.SpatialReference()
wkt_text = 'GEOGCS["GCS_WGS_1984",DATUM["WGS_1984",' \
'SPHEROID["WGS_1984",6378137,298.257223563]],PRIMEM["Greenwich",0],'\
'UNIT["Degree",0.017453292519943295]]'
# Imports WKT to Spatial Reference Object
srs.ImportFromWkt(wkt_text)
srs.MorphToESRI() # converts the WKT to an ESRI-compatible format
print "ESRI compatible WKT for use as .prj:" % srs.ExportToWkt()
osgeo
, dường như không hoạt động với Python 3?