# 地圖視覺化_生成國家經緯線圖 --------- ## 視覺化 ```python= ## plot data Sample_data = County_data.loc[:, ['COUNTYNAME', 'geometry']] Sample_data.plot() ```  #### 將x,y值以公尺表現 EPSG 3826 是台灣的一種地理空間參考系統,使用平面直角座標系統,以公尺為單位。 - 這次將GeoDataFrame 中的幾何資料(geometry)投影到EPSG 3826座標系統。 ```python= County_data=County_data.to_crs(epsg=3826) Sample_data = County_data.loc[:, ['COUNTYNAME', 'geometry']] Sample_data.plot() ```  :::info 腦力激盪 1. 在資料視覺化之前,我們調用了County_data中的哪兩個欄位資料至Sample_data? 2. geometry欄位在地圖視覺畫的作用為何?
×
Sign in
Email
Password
Forgot password
or
By clicking below, you agree to our
terms of service
.
Sign in via Facebook
Sign in via Twitter
Sign in via GitHub
Sign in via Dropbox
Sign in with Wallet
Wallet (
)
Connect another wallet
New to HackMD?
Sign up