คุณสามารถใช้ python (modules: shapley , GDAL / OGR , numpy , matplotlib ) และGDAL / OGRเพื่อวาดภาพจากข้อมูลเวกเตอร์เกือบทุกชนิดในรูปร่างไฟล์ของคุณ บางทีนี่อาจช่วยคุณได้
ตัวอย่าง:
from shapely.geometry import Polygon
from shapely.wkb import loads
from osgeo import ogr
from matplotlib import pyplot
def drawPoligon(poligon,graf):
xLista,yLista = poligon.exterior.xy
graf.fill(xLista,yLista,"y")
graf.plot(xLista,yLista, "k-")
fig = pyplot.figure(figsize=(4, 4),dpi=180)
ax = fig.add_subplot(111)
file1 = ogr.Open("d:\\temp02\\datafile.shp")
layer = file1.GetLayerByName("datafile")
parcel = layer.GetNextFeature()
while parcel is not None:
geometryParcel = loads(parcel.GetGeometryRef().ExportToWkb())
drawPoligon(geometryParcel , ax)
parcel = layer.GetNextFeature()
pyplot.savefig('datafile.png')