我有一个ESRI shapefile(从这里开始:http://pubs.usgs.gov/ds/425/)。我希望使用python从给定纬度/经度的形状文件(在本例中为表面材料)中查找信息。
解决此问题的最佳方法是什么?
感谢。
最终解决方案:
#!/usr/bin/python
from osgeo import ogr, osr
dataset = ogr.Open('./USGS_DS_425_SHAPES/Surficial_materials.shp')
layer = dataset.GetLayerByIndex(0)
layer.ResetReading()
# Location for New Orleans: 29.98 N, -90.25 E
point = ogr.CreateGeometryFromWkt("POINT(-90.25 29.98)")
# Transform the point into the specified coordinate system from WGS84
spatialRef = osr.SpatialReference()
spatialRef.ImportFromEPSG(4326)
coordTransform = osr.CoordinateTransformation(
spatialRef, layer.GetSpatialRef())
point.Transform(coordTransform)
for feature in layer:
if feature.GetGeometryRef().Contains(point):
break
for i in range(feature.GetFieldCount()):
print feature.GetField(i)
答案 0 :(得分:3)
这应该为您提供几何和不同的信息。
答案 1 :(得分:2)
您可以使用python绑定到gdal/ogr工具包。这是一个例子:
from osgeo import ogr
ds = ogr.Open("somelayer.shp")
lyr = ds.GetLayerByName("somelayer")
lyr.ResetReading()
point = ogr.CreateGeometryFromWkt("POINT(4 5)")
for feat in lyr:
geom = feat.GetGeometryRef()
if geom.Contains(point):
sm = feat.GetField(feat.GetFieldIndex("surface_material"))
# do stuff...
答案 2 :(得分:2)
另一种选择是使用Shapely(基于GEOS的Python库,PostGIS的引擎)和Fiona(基本上用于读/写文件):
import fiona
import shapely
with fiona.open("path/to/shapefile.shp") as fiona_collection:
# In this case, we'll assume the shapefile only has one record/layer (e.g., the shapefile
# is just for the borders of a single country, etc.).
shapefile_record = fiona_collection.next()
# Use Shapely to create the polygon
shape = shapely.geometry.asShape( shapefile_record['geometry'] )
point = shapely.geometry.Point(32.398516, -39.754028) # longitude, latitude
# Alternative: if point.within(shape)
if shape.contains(point):
print "Found shape for point."
请注意,如果多边形很大/很复杂(例如,某些具有极不规则海岸线的国家/地区的shapefile),那么进行多边形点测试可能会很昂贵。在某些情况下,在进行更密集的测试之前,它可以帮助使用边界框来快速排除问题:
minx, miny, maxx, maxy = shape.bounds
bounding_box = shapely.geometry.box(minx, miny, maxx, maxy)
if bounding_box.contains(point):
...
最后,请记住,加载和解析大型/不规则的shapefile需要一些时间(不幸的是,这些类型的多边形通常也很难保存在内存中)。