安装扩展 执行命令 pip install pyproj
import tkinter as tk
from pyproj import Transformer
# 创建 GUI 界面
root = tk.Tk()
root.title("GCJ-02 转 CGCS2000 坐标转换器")
# 创建输入框和标签
gcj_lat_label = tk.Label(root, text="GCJ-02 纬度:")
gcj_lat_label.grid(row=0, column=0)
gcj_lat_entry = tk.Entry(root)
gcj_lat_entry.grid(row=0, column=1)
gcj_lon_label = tk.Label(root, text="GCJ-02 经度:")
gcj_lon_label.grid(row=1, column=0)
gcj_lon_entry = tk.Entry(root)
gcj_lon_entry.grid(row=1, column=1)
# 创建输出框和标签
cgcs_lat_label = tk.Label(root, text="CGCS2000 纬度:")
cgcs_lat_label.grid(row=2, column=0)
cgcs_lat_entry = tk.Entry(root)
cgcs_lat_entry.grid(row=2, column=1)
cgcs_lon_label = tk.Label(root, text="CGCS2000 经度:")
cgcs_lon_label.grid(row=3, column=0)
cgcs_lon_entry = tk.Entry(root)
cgcs_lon_entry.grid(row=3, column=1)
# 创建转换函数
def convert():
gcj_lat = float(gcj_lat_entry.get())
gcj_lon = float(gcj_lon_entry.get())
transformer = Transformer.from_crs("EPSG:4326", "EPSG:4490")
cgcs_lon, cgcs_lat = transformer.transform(gcj_lon, gcj_lat)
cgcs_lat_entry.delete(0, tk.END)
cgcs_lat_entry.insert(0, str(cgcs_lat))
cgcs_lon_entry.delete(0, tk.END)
cgcs_lon_entry.insert(0, str(cgcs_lon))
# 创建转换按钮
convert_button = tk.Button(root, text="转换", command=convert)
convert_button.grid(row=4, column=0, columnspan=2)
# 运行 GUI 界面
root.mainloop()
编译好的 直接下转换软件