Skip to content

Latest commit

 

History

History
22 lines (17 loc) · 470 Bytes

README.md

File metadata and controls

22 lines (17 loc) · 470 Bytes

coordinate2address

中国经纬度坐标解析成行政区规划地址,目前精确到县级别

原理

  • GeoJson数据
  • Point in Polygon算法

使用

  • Python示例
    # 梅县松口车站
    longitude, latitude = 24.5045787219, 116.4040174622
    address = coordinate2address(latitude, longitude)
    print(address)
  • 执行结果

后续

  • 大量测试案例