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
- 파이썬
- crashlytics
- MySQL
- 데이터베이스
- 안드로이드앱
- 볼륨조절앱
- mysql_insert_id
- insertion
- last_insert_id
- 안드로이드 스튜디오
- 안드로이드
- escape_string
- Query
- mariaDB
- id 얻기
- auto_increment 값
- 알림바
- condensed
- 역슬레시
- 볼륨조절어플
- android studio
- soundcontroller
- 디자인패턴
- db
- Python
- 머터리얼
- Auto_increment
- insert_id
- Android
- 메터리얼
Archives
- Today
- Total
목록Longitude (1)
장삼의 착한코딩
[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"] print latitude print longitude
Python
2016. 2. 1. 18:17