Saya mencoba membaca sebuah shapefile dan memplotnya menggunakan matplotlib. Ini kodenya:
import matplotlib.pyplot as plt
import shapefile
shpFilePath = "D:\test.shp"
listx=[]
listy=[]
test = shapefile.Reader(shpFilePath)
for sr in test.shapeRecords():
for xNew,yNew in sr.shape.points:
listx.append(xNew)
listy.append(yNew)
plt.plot(listx,listy)
plt.show()
Namun, saya mendapatkan garis yang menghubungkan poligon saya. Bagaimana saya bisa menggambar poligon sedemikian rupa sehingga ada jalan di shapefile. Berikut adalah screenshot dari plot dan shapefile ketika dibuka dengan ArcGIS.