feat: CoordConverter 坐标转换套件 v1.0.0

TXT / Excel(CSV) / SHP 三种格式任意互转
支持 WGS84 / CGCS2000 / Xian80 / Beijing54 / Web Mercator 坐标系转换

由 Mapo 🗺️ 自动生成
This commit is contained in:
2026-07-29 12:49:08 +08:00
commit e9f87fc693
26 changed files with 725 additions and 0 deletions
+53
View File
@@ -0,0 +1,53 @@
# 🗺️ CoordConverter — 坐标转换套件 (Mercator Suite)
<p align="center">
<b>地理信息行业专用 · TXT / Excel / SHP 互转 · 多坐标系转换</b>
<br>
<code>Mercator Suite</code><code>Python 3</code><code>pyproj</code><code>geopandas</code>
</p>
---
## 📌 一句话
TXT、Excel(CSV)、SHP 三种格式的坐标数据**任意互转**,同时支持 **WGS84 / CGCS2000 / Xian80 / Beijing54 / Web Mercator** 坐标系转换。
## 🚀 快速使用(作为 Mercator 套件)
```bash
agc run /tmp/coord-output \
--suite-id <suite_id> \
--input input_file=/data/外业数据.txt \
--input output_file=/tmp/coord-output/成果表.xlsx \
--input from_crs=EPSG:4326 \
--input to_crs=EPSG:4490
```
## 📦 依赖
已预装 `gis-base:latest`,额外需要:
- `pandas``openpyxl`Excel 读写)
## 🏗️ 项目结构
```
coord-converter-suite/
├── workflow.yaml ← Mercator 套件定义
├── run_suite.py ← 套件入口(读取 PARAM_* 环境变量)
├── requirements.txt
├── README.md
├── core/
│ ├── coord_transform.py ← 坐标系转换引擎(pyproj)
│ └── data_model.py ← 统一数据模型
├── file_io/
│ ├── txt_handler.py ← TXT/CSV 读写(自动检测分隔符)
│ ├── excel_handler.py ← Excel/CSV 读写
│ └── shp_handler.py ← SHP 读写(geopandas
├── converter/
│ └── workflow.py ← 转换编排器
├── cli/
│ └── cli_runner.py ← 独立 CLI(可本地调试)
└── examples/
├── sample_points.txt
└── sample_points.csv
```