GIS×Python~지오코딩으로 위치 정보 취득~
6758 단어 파이썬GeoCoding셀레늄BeautifulSoupGPS
1.경위
상권 분석할 때 목표물이나 시설의 위치 정보를 갖고 싶거나 한다. 일일이 손 입력해서 검색하는 것이 조금 귀찮아서 지오코딩을 반자동화해 보았다.
2.코드
사쿠토 1시간 정도로 쓴 코드이므로 특히 어려운 일은 하지 않고, 보다 좋은 방법이 있으면 그 때마다 갱신해 주세요.
지나치게 접근하면 화가납니다.
geocoding.py# coding:utf-8
from selenium import webdriver
from selenium.webdriver.common.keys import Keys
import urllib.request
from bs4 import BeautifulSoup
from time import sleep
import numpy as np
driver = webdriver.Chrome(executable_path='./chromedriver')
driver.get("https://www.geocoding.jp/")
out = np.zeros((0,3))
#データフレームとかで検索リストを投げてもよい。
for text in ['カンプ・ノウ','ウェンブリー・スタジアム','スタッド・ドゥ・フランス','サンティアゴ・ベルナベウ','ルジニキ・スタジアム']:
driver.find_element_by_id('q').send_keys(f"{text}")
driver.find_element_by_xpath('/html/body/form/div/div[4]/input').click()
sleep(4)
next_url = driver.current_url
html = urllib.request.urlopen(next_url)
soup = BeautifulSoup(html, "lxml")
latlon = soup.find("span")
try:
latlon_list = [i.string for i in latlon]
lat = latlon_list[1]
lon = latlon_list[3]
out2 = np.hstack((text,lat,lon))
out = np.vstack((out,out2))
print(text)
except:
out2 = np.hstack((text,"NaN","NaN"))
out = np.vstack((out,out2))
print(f'{text}に該当する住所が見つかりませんでした。')
이상! ! !
Reference
이 문제에 관하여(GIS×Python~지오코딩으로 위치 정보 취득~), 우리는 이곳에서 더 많은 자료를 발견하고 링크를 클릭하여 보았다
https://qiita.com/OSAKO/items/c47b20b4aa543e1b19ea
텍스트를 자유롭게 공유하거나 복사할 수 있습니다.하지만 이 문서의 URL은 참조 URL로 남겨 두십시오.
우수한 개발자 콘텐츠 발견에 전념
(Collection and Share based on the CC Protocol.)
사쿠토 1시간 정도로 쓴 코드이므로 특히 어려운 일은 하지 않고, 보다 좋은 방법이 있으면 그 때마다 갱신해 주세요.
지나치게 접근하면 화가납니다.
geocoding.py
# coding:utf-8
from selenium import webdriver
from selenium.webdriver.common.keys import Keys
import urllib.request
from bs4 import BeautifulSoup
from time import sleep
import numpy as np
driver = webdriver.Chrome(executable_path='./chromedriver')
driver.get("https://www.geocoding.jp/")
out = np.zeros((0,3))
#データフレームとかで検索リストを投げてもよい。
for text in ['カンプ・ノウ','ウェンブリー・スタジアム','スタッド・ドゥ・フランス','サンティアゴ・ベルナベウ','ルジニキ・スタジアム']:
driver.find_element_by_id('q').send_keys(f"{text}")
driver.find_element_by_xpath('/html/body/form/div/div[4]/input').click()
sleep(4)
next_url = driver.current_url
html = urllib.request.urlopen(next_url)
soup = BeautifulSoup(html, "lxml")
latlon = soup.find("span")
try:
latlon_list = [i.string for i in latlon]
lat = latlon_list[1]
lon = latlon_list[3]
out2 = np.hstack((text,lat,lon))
out = np.vstack((out,out2))
print(text)
except:
out2 = np.hstack((text,"NaN","NaN"))
out = np.vstack((out,out2))
print(f'{text}に該当する住所が見つかりませんでした。')
이상! ! !
Reference
이 문제에 관하여(GIS×Python~지오코딩으로 위치 정보 취득~), 우리는 이곳에서 더 많은 자료를 발견하고 링크를 클릭하여 보았다 https://qiita.com/OSAKO/items/c47b20b4aa543e1b19ea텍스트를 자유롭게 공유하거나 복사할 수 있습니다.하지만 이 문서의 URL은 참조 URL로 남겨 두십시오.
우수한 개발자 콘텐츠 발견에 전념 (Collection and Share based on the CC Protocol.)