일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
- 공주페이
- tablewidget
- table
- HP스펙터x360
- shape내려받기
- SQL
- 테이블목록
- posgresql
- posgtresql
- 와콤뱀부슬레이트
- rc.local
- postgrest
- table비교
- Openlayers
- 네이버클라우드
- postgis
- Python
- 순댓국밥
- 테이블 중복조회
- 데이터비교
- 하위디렉토리
- PostgreSQL
- shp내려받기
- psql
- qgis
- ST_InvDistWeight4ma
- 테이블리턴
- HP스펙터
- pygqis
- idw
- Today
- Total
목록오픈소스 (25)
오픈소스의 일상
#tableWidget을 선언한다.qTable = self.tableWidgetqTable.clear() # 내용 초기화qTable.setRowCount(0) # 행 초기화qTable.setColumnCount(0) # 열 초기화데이터량이 적으면 상관없지만 많을 경우는 꼭 하는것이 좋을 것 같음
import os# 탐색할 디렉토리 지정directory = "/path/to/directory"# os.walk()를 사용하여 특정 확장자 파일만 탐색for root, dirs, files in os.walk(directory): for file in files: if file.endswith(".txt"): # .txt 파일만 필터링 file_path = os.path.join(root, file) print(file_path)
expr = QgsExpression(expression_string) for vlayer in QgsProject.instance().mapLayersByName('레이어명'): features = vlayer.getFeatures(QgsFeatureRequest(expr)) for feature in features: fid = feature.id() 조금만 응용하면 다양한 방식으로 활용이 가능합니다.
file_path = "내려받는shape 파일명.shp" encoding = "windows-949" crs = QgsCoordinateReferenceSystem('EPSG:5179') format = "ESRI Shapefile" for layer in QgsProject.instance().mapLayers().values(): if layer.type() == QgsMapLayer.VectorLayer: if layer.name() == "원하는레이어명": writer = QgsVectorFileWriter.writeAsVectorFormat(layer,file_path,encoding,layer.crs(),format) 조금만 응용하면 원하는 코드가 되지 않을까 합니다.
array_list 에 필요한 값들을 담아둘때가 많다. 데이터량이 많을때 종종 중복된 값이 들어갈 경우가 많기에 중복제거는 필수가 된다. dict.fromkeys(array_list) 직접해보면 답이 나옵니다 ㅎ https://www.w3schools.com/python/ref_dictionary_fromkeys.asp
즉. 세션을 물고 있어서 세션을 끊어야 한다. postgres=# select pg_terminate_backend(pid) postgres-# from pg_stat_activity postgres-# where datname = 'OOOOOO'; pg_terminate_backend ---------------------- t (1개 행) 그리고 데이터베이스를 삭제하면 잘 삭제된다. ㅎ
~ ! @ # $ % ^ & * \ " ' + = ` | ( ) [ ] { } : ; - _ - # & & @ § ※ ☆ ★ ○ ● ◎ ◇ ◆ □ ■ △ ▲ ▽ ▼ → ← ← ↑ ↓ ↔ 〓 ◁ ◀ ▷ ▶ ♤ ♠ ♡ ♥ ♧ ♣ ⊙ ◈ ▣ ◐ ◑ ▒ ▤ ▥ ▨ ▧ ▦ ▩ ♨ ☏ ☎ ☜ ☞ ¶ † ‡ ↕ ↗ ↙ ↖ ↘ ♭ ♩ ♪ ♬ ㉿ ㈜ № ㏇ ™ ㏂ ㏘ ℡ ® ª º ─ │ ┌ ┐ ┘ └ ├ ┬ ┤ ┴ ┼ ━ ┃ ┏ ┓ ┛ ┗ ┣ ┳ ┫ ┻ ╋ ┠ ┯ ┨ ┷ ┿ ┝ ┰ ┥ ┸ ╂ ┒ $ % ₩ F ′ ″ ℃ Å ¢ £ ¥ ¤ ℉ ‰ € ㎕ ㎖ ㎗ ℓ ㎘ ㏄ ㎣ ㎤ ㎥ ㎦ ㎙ ㎚ ㎛ ㎜ ㎝ ㎞ ㎟ ㎠ ㎡ ㎢ ㏊ ㎍ ㎎ ㎏ ㏏ ㎈ ㎉ ㏈ ㎧ ㎨ ㎰ ㎱ ㎲ ㎳ ㎴ ㎵ ㎶ ㎷ ㎸ ㎹ ㎀ ㎁ ㎂ ㎃ ㎄ ㎺ ㎻ ㎼ ..
SELECT * FROM pg_catalog.pg_tables WHERE schemaname = '스키마' AND tableowner = '사용자' AND tablename = '테이블명'
한국에서는 OpenLayers를 가장 많이 사용한다. 아래와 같이 다양한 버전이 있지만 v5.3.0 released 2018-11-06 v4.6.5 released 2018-03-20 v3.20.1 released 2016-12-12 v2.13.1 released 2013-07 그래도 여기선 최신버전인 v6.12.0 을 설명하자고 한다. https://github.com/openlayers/openlayers/releases/ Releases · openlayers/openlayers OpenLayers. Contribute to openlayers/openlayers development by creating an account on GitHub. github.com https://github.com/..
SQL로 공간데이터를 관리하고 있는분들만 보세요 PostGIS 2.X 사용하고 있다면 하루빨리 PostGIS 3.1.X 으로 업그레이드 시키세요. https://trac.osgeo.org/postgis/wiki/UsersWikiPostgreSQLPostGIS UsersWikiPostgreSQLPostGIS – PostGIS Current best As of 03 September 4th, 2021 these versions are latest and give you best stable feature coverage. PostGIS Support Matrix Versions of PostgreSQL supported by which versions of PostGIS PostgreSQL versionPo..