當前位置:首頁 » 編程語言 » shapefilepython

shapefilepython

發布時間: 2023-04-05 19:54:36

python readshapefile讀取.shp報錯

幫你搜

python readshapefile

找到了

'utf-8' codec can't decode when using readshapefile on python basemap - Stack Overflow

其中提到的,或許對你有用:

去把你的要導入的文件 bou2_4p.shp 去(比如用VSCode)轉換為UTF-8編碼

估計就可以了。


關於VSCode,詳見:

文件編碼 · 史上最好用的編輯器:VSCode

㈡ 如何用python讀取arcgis中shapefile文件的屬性表

可以,如果arcgis是10版本,可以用arcpy模塊中的SearchCursor讀取shp的屬性表;用python讀寫excel需要安裝pythonWin或者安裝comtypes都可以,你可以上網找一下這樣的資料。

㈢ 如何利用Python讀入shapefile文件 Python如果讀入非TXT文件

# filename: test.py
import os

users = [] # 用來保存從文件中讀取的數據

for item in os.listdir('.'): # 遍歷指定目錄
if os.path.isfile(item) and item.endswith('.txt'): # 判斷是否為.txt文件
f = open(item) # 打開文件

for line in f: # 讀入文件的每一行
if line.startswith('用戶名'): # 變數初始化
uid = age = sex = None
elif line.startswith("用戶id"): # 根據每行開始內容獲取數據
uid = line.split()[1]
elif line.startswith("年齡"):
age = line.split()[1]
elif line.startswith("性別"):
sex = line.split()[1]
users.append([uid, age, sex]) # 將所獲得的數據以列表的形式追加到數組中

f.close() # 關閉文件

print(users) # 列印數組內容

# [['12345', '23', '男'], ['12346', '23', '男'], ['12347', '23', '男'], ['12348', '23', '男']]

使用的數據文件:
1.txt
------------
用戶名 abc
------------
用戶id 12345

年齡 23

性別 男

------------
用戶名 小張
------------
用戶id 12346

年齡 23

性別 男

2.txt
------------
用戶名 張三
------------
用戶id 12347

年齡 23

性別 男

------------
用戶名 李四
------------
用戶id 12348

年齡 23

性別 男

熱點內容
linux下載gcc 發布:2024-11-02 14:13:47 瀏覽:344
寫演算法交易 發布:2024-11-02 13:57:09 瀏覽:208
安卓怎麼下載鴻蒙 發布:2024-11-02 13:36:13 瀏覽:663
加密狗rsa 發布:2024-11-02 13:20:44 瀏覽:560
實用java教程 發布:2024-11-02 13:07:39 瀏覽:930
ide文件夾 發布:2024-11-02 12:51:37 瀏覽:559
python中字典的用法 發布:2024-11-02 12:40:42 瀏覽:28
安卓怎麼下載zine 發布:2024-11-02 12:40:38 瀏覽:793
深入理解java虛擬 發布:2024-11-02 12:40:36 瀏覽:557
延吉麻將源碼 發布:2024-11-02 12:39:36 瀏覽:226