반응형

주소 조회 API

1. 통계지리정보서비스 (SGIS) API- 행정구역 및 도로명주소 단계별 조회 API 행정동 조회기능  개발지원센터단계별 주소 조회 즐겨찾기 등록 즐겨찾기 행정구역 및 도로명주소 단계별 조회 API 요청주소 https://sgisapi.kostat.go.kr/OpenAPI3/addr/stage.json 요청정보(Body) 요청변수 값 Optional 설명 accessToken String 필수sgis.kostat.go.kr  2. 공공데이터포탈 API법정동, 행정동 코드 조회 행정안전부_행정표준코드_법정동코드행정표준코드관리시스템에서 제공중인 법정동코드 정보www.data.go.kr

API 2025.01.09 0

Linux에 Anaconda 설치하기

2024. 12. 11. 업데이트 된 내용입니다. 1. 최신버전 확인하기 Download Now | AnacondaAnaconda is the birthplace of Python data science. We are a movement of data scientists, data-driven enterprises, and open source communities.www.anaconda.com자신의 Linux에 맞는 설치파일 링크를 복사합니다. 2. 다운로드[ec2-user@ ~]$ wget https://repo.anaconda.com/archive/Anaconda3-2024.10-1-Linux-x86_64.sh--2024-12-10 17:20:12-- https://repo.anaconda.com..

Python 2024.12.11 2

Python 반올림(Round), 올림(Ceil), 내림(Floor), 버림(Trunc)

▣ Round (반올림)def round(number: SupportsRound[Any], ndigits: None) -> int: ...흔히 엑셀에서 사용하는 반올림 함수와 동일하다.. 결과 값의 소숫점 자리수를 인자로 넣을 수 있다.import mathprint(round(1.1)) #1print(round(1.6)) #2print(round(-1.1)) #-1print(round(-1.6)) #-2print(round(math.pi, 1)) #3.1print(round(math.pi, 2)) #3.14print(round(math.pi, 3)) #3.142print(round(math.pi, 4)) #3.1416  ▣ ceil (올림)def ceil(__x: _SupportsFloatOrIndex)..

Python 2024.10.23 0

주소 조회 API

1. 통계지리정보서비스 (SGIS) API- 행정구역 및 도로명주소 단계별 조회 API 행정동 조회기능  개발지원센터단계별 주소 조회 즐겨찾기 등록 즐겨찾기 행정구역 및 도로명주소 단계별 조회 API 요청주소 https://sgisapi.kostat.go.kr/OpenAPI3/addr/stage.json 요청정보(Body) 요청변수 값 Optional 설명 accessToken String 필수sgis.kostat.go.kr  2. 공공데이터포탈 API법정동, 행정동 코드 조회 행정안전부_행정표준코드_법정동코드행정표준코드관리시스템에서 제공중인 법정동코드 정보www.data.go.kr

API 2025.01.09 0

Linux에 Anaconda 설치하기

2024. 12. 11. 업데이트 된 내용입니다. 1. 최신버전 확인하기 Download Now | AnacondaAnaconda is the birthplace of Python data science. We are a movement of data scientists, data-driven enterprises, and open source communities.www.anaconda.com자신의 Linux에 맞는 설치파일 링크를 복사합니다. 2. 다운로드[ec2-user@ ~]$ wget https://repo.anaconda.com/archive/Anaconda3-2024.10-1-Linux-x86_64.sh--2024-12-10 17:20:12-- https://repo.anaconda.com..

Python 2024.12.11 2

Python 반올림(Round), 올림(Ceil), 내림(Floor), 버림(Trunc)

▣ Round (반올림)def round(number: SupportsRound[Any], ndigits: None) -> int: ...흔히 엑셀에서 사용하는 반올림 함수와 동일하다.. 결과 값의 소숫점 자리수를 인자로 넣을 수 있다.import mathprint(round(1.1)) #1print(round(1.6)) #2print(round(-1.1)) #-1print(round(-1.6)) #-2print(round(math.pi, 1)) #3.1print(round(math.pi, 2)) #3.14print(round(math.pi, 3)) #3.142print(round(math.pi, 4)) #3.1416  ▣ ceil (올림)def ceil(__x: _SupportsFloatOrIndex)..

Python 2024.10.23 0
반응형