Notice
Recent Posts
Recent Comments
Link
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | 3 | 4 | |||
5 | 6 | 7 | 8 | 9 | 10 | 11 |
12 | 13 | 14 | 15 | 16 | 17 | 18 |
19 | 20 | 21 | 22 | 23 | 24 | 25 |
26 | 27 | 28 | 29 | 30 | 31 |
Tags
- insertion
- db
- 알림바
- 볼륨조절어플
- condensed
- id 얻기
- android studio
- escape_string
- insert_id
- 데이터베이스
- crashlytics
- soundcontroller
- 파이썬
- Android
- mariaDB
- 볼륨조절앱
- auto_increment 값
- 안드로이드
- 메터리얼
- Python
- 역슬레시
- Auto_increment
- 안드로이드 스튜디오
- 머터리얼
- MySQL
- mysql_insert_id
- last_insert_id
- 디자인패턴
- 안드로이드앱
- Query
Archives
- Today
- Total
장삼의 착한코딩
[Python] 주소로 위도 경도 검색하기 본문
import urllib
import json
location = "검색 주소"
data = urllib.urlopen("http://maps.googleapis.com/maps/api/geocode/json?sensor=false&language=ko&address=" + location)
json = json.loads(data.read())
latitude = json["results"][0]["geometry"]["location"]["lat"]
longitude = json["results"][0]["geometry"]["location"]["lng"]
import json
location = "검색 주소"
data = urllib.urlopen("http://maps.googleapis.com/maps/api/geocode/json?sensor=false&language=ko&address=" + location)
json = json.loads(data.read())
latitude = json["results"][0]["geometry"]["location"]["lat"]
longitude = json["results"][0]["geometry"]["location"]["lng"]
print latitude
print longitude
'Python' 카테고리의 다른 글
[Python] escape_string 작은따옴표, 큰따옴표 처리 (0) | 2016.02.03 |
---|
Comments