作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
在 Python 中使用 fiona
处理坐标系时和 osgeo
,似乎有很多方法可以通过导入/导出不同的 crs 格式来定义坐标系,例如:
菲奥娜:
from fiona.crs import from_epsg,from_string,to_string
# Import crs from different formats:
wgs = from_epsg(4326)
wgs = from_string("+proj=longlat +ellps=WGS84 +datum=WGS84 +no_defs ")
# Export crs as proj4 string
wgs_proj4_string = to_string(wgs)
from osgeo import osr
srs = osr.SpatialReference()
srs.ImportFromESRI(['GEOGCS["GCS_WGS_1984",DATUM["D_WGS_1984",SPHEROID["WGS_1984",6378137,298.257223563]],PRIMEM["Greenwich",0],UNIT["Degree",0.017453292519943295]]'])
srs.ImportFromProj4("+proj=longlat +ellps=WGS84 +datum=WGS84 +no_defs")
srs.ImportFromEPSG(4326)
#the import options are very rich
# Export to different formats
srs.ExportToProj4()
srs.ExportToWkt()
srs.ExportToXML()
#... many export options!
srs.AutoIdentifyEPSG()
epsg = srs.GetAuthorityCode(None)
to_epsg()
在 Fiona
或 ExportToEPSG()
在 osgeo
? 最佳答案
可以试试 pyproj CRS:https://pyproj4.github.io/pyproj/stable/examples.html#converting-crs-to-a-different-format
from pyproj import CRS
from fiona.crs import to_string, from_epsg
fiona_crs = from_epsg(28356)
proj4_crs = CRS.from_proj4(to_string(fiona_crs))
srid = proj4_crs.to_epsg()
关于python - 将坐标系导出为 ESPG 代码 : to_epsg() or ExportToEPSG(),我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/42208034/
在 Python 中使用 fiona 处理坐标系时和 osgeo ,似乎有很多方法可以通过导入/导出不同的 crs 格式来定义坐标系,例如: 菲奥娜: from fiona.crs import fr
我是一名优秀的程序员,十分优秀!