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
- CesiumJS
- WMTS
- 3D tiles
- gdal2tiles
- pg_notify
- georeferrencing
- Cesium
- PointCloud
- VWORLD
- DXF
- display:flex
- threejs
- extent linestring
- attribute Selector
- PostgreSQL
- PDAL
- line width
- Line Dashed
- jupyternotebook
- publish/subscribe
- 3DTiles
- GIS
- QGIS
- raster2pgsql
- PostGIS
- Potree
- GDAL
- GeoServer
- css
- anotherdxfimporter
Archives
- Today
- Total
코드조각 저장소
Contour Line 본문
원본 글 : abelvm.github.io/sql/contour/
Fast contour lines using plain PostGIS
There’s a bunch of different ways to generate contour lines [1] from scatter data, each of them based on different interpolation algorithms. Like KNN [2], IDW [3] or kriging-flavoured methods [4]. (image from Wikipedia)
abelvm.github.io
Input Dataset
- geomin: geometries array -> 좌표 포인트
- colin: numeric values array -> z, height 값
- breaks: numeric breaks array -> 10, 20, 30 구간 값
Comments