«matplotlib» 태그된 질문

4
파이썬을 사용하여 shapefile의 간단한 주제 매핑?
ArcGIS / ArcPy를 사용하지 않고 파이썬으로 지리 데이터를 시각화하고 맵을 만들고 싶습니다. 인터넷에서 파이썬을 사용하여 주제 맵을 만드는 방법을 찾았습니다 . 내가 시도한 코드는 다음과 같습니다. import shpUtils import matplotlib.pyplot as plt shpRecords = shpUtils.loadShapefile('C:\\Users\\shapefile.shp') for i in range(0,len(shpRecords)): x = [] y = [] for j in range(0,len(shpRecords[i]['shp_data']['parts'][0]['points'])): tempx …

6
matplotlib을 사용하여 shapefile 플롯
shapefile을 읽고 matplotlib을 사용하여 플롯하려고합니다. 코드는 다음과 같습니다. 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() 그러나 다각형을 연결하는 선이 나타납니다. 다각형이 shapefile에있는 방식으로 다각형을 그리는 방법은 무엇입니까? 다음은 ArcGIS로 열린 플롯 …

1
GeoPandas를 사용하여 플롯에서 마커 크기 변경
포인트와 관련 데이터가있는 지리 데이터 프레임이 있습니다. geopandas를 사용하여 맵에 플롯하고 점의 크기가 지오 데이터 프레임의 열 중 하나와 일치하도록하고 싶습니다. 지금까지 다음 코드가 있습니다. base = world.plot(color='white', figsize=(20,10)) geo_df.plot(ax=base, marker='.', color='red', markersize = geo_df['Pop_2005']) plt.xlim([-85, -60]) plt.ylim([-5, 12.5]); 그러나 다음과 같은 오류가 발생합니다. TypeError: cannot convert the series to …
당사 사이트를 사용함과 동시에 당사의 쿠키 정책개인정보 보호정책을 읽고 이해하였음을 인정하는 것으로 간주합니다.
Licensed under cc by-sa 3.0 with attribution required.