PostgreSQL에 PostGIS가 있다면 SQLite에는 SpatiaLite가 있습니다.
SpatiaLite는 완전한 기능을 갖춘 Spatial SQL 기능을 지원하기 위해 SQLite 코어를 확장하기 위한 오픈 소스 라이브러리입니다.
SQLite는 본질적으로 단순하고 가볍습니다.
- a single lightweight library implementing the full SQL engine
- standard SQL implementation: almost complete SQL-92
- no complex client/server architecture
- a whole database simply corresponds to a single monolithic file (no size limits)
- any DB-file can be safely exchanged across different platforms, because the internal architecture is universally portable
- no installation, no configuration
SpatiaLite는 완벽하고 강력한 Spatial DBMS(대부분 OGC-SFS 호환)를 제공하기 위해 SQLite에 원활하게 통합됩니다.
SQLite + SpatiaLite를 사용하면 PostgreSQL + PostGIS와 거의 동등한 대체 오픈 소스 Spatial DBMS를 효과적으로 배포할 수 있습니다.
SpatiaLite는 MPL 3중 라이선스 조건에 따라 라이선스가 부여됩니다. 다음 중에서 가장 적합한 라이선스를 자유롭게 선택할 수 있습니다.
- MPL 1.1
- GPL v2.0 혹은 후속 버전
- LGPL v2.1 혹은 후속 버전
참고사이트
'GIS' 카테고리의 다른 글
RMSE - 정확도 측정 (0) | 2023.05.30 |
---|---|
위도/경도를 도분초로 변환하기 (0) | 2023.05.17 |
DEGREE(도, ° ) vs. RADIAN(라디안) (0) | 2023.04.12 |
cs2cs command (0) | 2023.04.11 |
좌표 정의 및 좌표계 (0) | 2023.04.05 |