from telecomModels.Connections import officecon
import pandas as pd
from telecomgis.LonLatGis import ModifyLonlat
cell=pd.read_sql(‘ORACL网元工参’,con=officecon().engineSourcesPerformance)
print(cell[[‘longitude’,‘latitude’]])
cell[‘lonlat’]=cell[[‘longitude’,‘latitude’]].apply(lambda x:ModifyLonlat().bd09_to_gcj02(x[‘longitude’],x[‘latitude’]), axis=1)
print(cell[‘lonlat’])
版权声明:本文为cuisidong1997原创文章,遵循CC 4.0 BY-SA版权协议,转载请附上原文出处链接和本声明。