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
- 안드로이드앱
- Python
- soundcontroller
- 안드로이드
- last_insert_id
- insert_id
- android studio
- 역슬레시
- insertion
- id 얻기
- 머터리얼
- Android
- condensed
- mariaDB
- escape_string
- mysql_insert_id
- crashlytics
- 알림바
- 볼륨조절앱
- db
- auto_increment 값
- 파이썬
- 안드로이드 스튜디오
- Query
- MySQL
- 데이터베이스
- 볼륨조절어플
- 메터리얼
- Auto_increment
- 디자인패턴
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