일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
- MySQL
- dock
- GPS
- Ajax
- JDOM
- jsr 296
- JSON
- WebLogic
- appspresso
- iBATIS
- jQuery
- Google Map
- rowspan
- tomcat
- node.js
- Eclipse
- phonegap
- oracle
- Spring
- sencha touch
- swingx
- PLSQL
- 선택적조인
- ibsheet
- MFC
- 전자정부프레임워크
- PHP
- Struts
- Android
- 가우스
- Today
- Total
목록Developement/GIS (4)
Where The Streets Have No Name
출처 : http://esc.cl.hangkong.ac.kr/metabbs/metabbs.php/post/1673?page=1 $GPGGA,143601.000,3733.2653,N,12656.7552,E,1,06,4.4,97.6,M,19.4,M,,0000*6A $GPGGA : Global Positioning System Fix Data 143601.000 : 시간 37 33.2653,N : 위도 뒤에 소수점 있는 숫자는 60분법 126 56.7552,E : 경도 1 : fix종류 - 0 : err 1 : 위성신호로만 계산 2 : dgps 사용 계산 06 : 계산에 사용한 위성의 갯수 4.4 : 수평위치 정밀도저하율 97.6,M : 고도 (수면) 19.4,M : 고도 (지면) - 확실하지 않음. 0000..
출처 : http://www.meridianworlddata.com/Distance-Calculation.asp Because of the near-spherical shape of the Earth (technically an oblate spheroid) , calculating an accurate distance between two points requires the use of spherical geometry and trigonometric math functions. However, you can calculate an approximate distance using much simpler math functions. For many applications the approximate di..
출처 : http://leewoosung.egloos.com/986759 # -*- coding: EUC-KR -*- import serial #시리얼 포트를 열기위해서 : serial.Serial(..) import time #시간을 알아내기 위해서 : time.ctime(time.time()) #현재 시리얼 포트를 엽니다. s_com4 = serial.Serial(port = 3, baudrate = 4800, timeout = 1) #데이터를 저장할 파일입니다. dst_file = "c:\\gps_message.txt" try: #파일에 추가로 열기를 시도해봅니다. save_file = open(dst_file, 'a') except: #기존에 파일이 없었다면 쓰기로 엽니다. (새로 하나 만듭니다...