반응형

분류 전체보기 20

주소 조회 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

Developments/API 2025.01.09

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..

Developments/Python 2024.12.11

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)..

Developments/Python 2024.10.23

iOS] 스크린샷 사양 (Screenshot Specifications)

6.5"가 필수이고 6.7"가 선택이지만 6.7"만 올리면 6.5"는 6.7"로 대체된다. iPhone 6.7" Display (선택 사항) - 1,290 x 2,796 iPhone 15 Pro Max, iPhone 15 Plus, iPhone 14 Pro Max iPhone 6.5" Display (필수) - 1,284 x 2,778 or 1,242 x 2,688 iPhone 14 Plus, iPhone 13 Pro Max, iPhone 12 Pro Max, iPhone 11 Pro Max, iPhone XS Max, iPhone XR iPhone 5.5" Display (필수) - 1,242 x 2,208 iPhone 8 Plus, iPhone 7 Plus, iPhone 6s Plus iPadOS, ..

Developments 2023.09.26

Flutter/Error] Null check operator used on a null value

======== Exception caught by rendering library ======== The following _TypeError was thrown during performLayout(): Null check operator used on a null value ======== Exception caught by rendering library ======== The following _TypeError was thrown during paint(): Null check operator used on a null value 어떤 값이 Null값인지 안 알려주고 Null 체크하라는 메시지만 나와서... 미쳐버리는 줄 알았는데, FittedBox 안에 Text의 String 값이 아무것도 ..

Flutter에 Admob 광고 달기 (google_mobile_ads)

Flutter에서 Admob 광고 다는데 google_mobile_ads 라는 패키지를 사용합니다. 예전에는 서드파티 패키기가 더 좋았었는데, 지금은 google에서 제공하는 google_mobile_ads가 가장 좋은 것 같습니다. pubspec.yaml dependencies: google_mobile_ads: ^3.0.0 android/app/src/main/AndroidManifest.xml ios/Runner/Info.plist GADApplicationIdentifier ca-app-pub-################~########## iOS는 Info.plist에 아래 내용을 추가적으로 입력해 주세요. iOS 14 이상에 대비하기 | Google Developers iOS 14 이상에 대..

반응형