Network Security Internet Technology Development Database Servers Mobile Phone Android Software Apple Software Computer Software News IT Information

In addition to Weibo, there is also WeChat

Please pay attention

WeChat public account

Shulou

How to use python to realize geocoding

2025-04-04 Update From: SLTechnology News&Howtos shulou NAV: SLTechnology News&Howtos > Internet Technology >

Share

Shulou(Shulou.com)06/02 Report--

This article focuses on "how to use python to achieve geocoding", interested friends may wish to have a look. The method introduced in this paper is simple, fast and practical. Let the editor take you to learn "how to use python to achieve geocoding"!

Python realizes geocoding and goes to Amap to apply for a good key

Python code #-*-coding:utf_8-*-#! / usr/bin/python37 "" @ author:renyuan@software:PyCharm@file: Hunan village. Py@time:2021/5/12 001221 coding:utf_8 17 "import requestsimport jsonimport pandas as pd## reads the Excel file df_address = pd.read_excel ('Excel file where the address entered') # # constructs urldf_address ['url'] =' https://restapi.amap. Com/v3/geocode/geo?address='+df_address ['address column'] +'& output=JSON&key= enter your key'## to create an empty df Used to receive file result = pd.DataFrame ([]) for url in df_address ['url']: # # get request response = requests.get (url) # # return json file persons = json.loads (response.text) # # json file parsing for person in persons [' geocodes']: dict = {} dict = person df = pd.DataFrame ([dict]) # # File append result = result.append (df, ignore_index=False) print (result) result.to_csv ('results.csv', index=False)

Coordinate correction

Here take a plug-in.

The Gaud coordinates use Martian coordinates, so we take Martian coordinates to transform Earth coordinates.

ArcGISPro performs XY turning point

Export data

Effect.

At this point, I believe you have a deeper understanding of "how to use python to achieve geocoding". You might as well do it in practice. Here is the website, more related content can enter the relevant channels to inquire, follow us, continue to learn!

Welcome to subscribe "Shulou Technology Information " to get latest news, interesting things and hot topics in the IT industry, and controls the hottest and latest Internet news, technology news and IT industry trends.

Views: 0

*The comments in the above article only represent the author's personal views and do not represent the views and positions of this website. If you have more insights, please feel free to contribute and share.

Share To

Internet Technology

Wechat

© 2024 shulou.com SLNews company. All rights reserved.

12
Report