日期: 2023年8月31日

1 篇文章

thumbnail
坐标转换Python代码
# _*_ coding:utf-8 _*_ class GPS: def _init_(self,lon = 'Null', lat = 'Null'): self.Lat = lat self.Lon = lon def getLat(self): return self.Lat def getLon(self): return self.Lo…