coordTransform_py icon indicating copy to clipboard operation
coordTransform_py copied to clipboard

提供百度坐标系(bd-09)、火星坐标系(国测局坐标系、gcj02)、WGS84坐标系直接的坐标互转,也提供了解析高德地址的方法的python版本

Results 17 coordTransform_py issues
Sort by recently updated
recently updated
newest added

希望楼主添加以某个中心点 指定范围内的随机坐标的功能,感谢!

看到有一个 http://www.gpsspg.com/api/convert/latlng/ 这个api, 和这个数据谁比较过, 区别大吗?>

请问我可以在arcgis中用python将wgs1984转换到百度坐标么

urllib has been split up in Python 3. The urllib.urlencode() function is now urllib.parse.urlencode(), and the urllib.urlopen() function is now urllib.request.urlopen(). and delete my own key

原链接为: ` geocoding = {'s': 'rsv3', 'key': self.api_key, 'city': '全国', 'address': address} geocoding = urllib.parse.urlencode(geocoding) ret = urllib.request.urlopen("%s?%s" % ("http://restapi.amap.com/v3/geocode/geo", geocoding))` (举例:[http://restapi.amap.com/v3/geocode/geos=rsv3&key=xxx&city=%广州&address=%君紫花园)] 查询结果为: { "status": "0", "info": "INVALID_USER_KEY", "infocode": "10001"}...

Tried to migrate coordTransform to a Java version, only the wgs84_to_bd09 part. Please wandergis can merge in your project if wanted. package com.xxx.xxxworld.util; [Geocoding.zip](https://github.com/wandergis/coordTransform_py/files/11413737/Geocoding.zip) public class Geocoding { static final...

将返回列表修改为返回元组; 将is_out_china修改为is_in_china装饰器; 安装pep8微调了一下空格;