pointcloud_postgis

integration for pointcloud LIDAR data and PostGIS geometry data

Overview

PGDG 1st Party Extension: pointcloud : integration for pointcloud LIDAR data and PostGIS geometry data

Information

Metadata

  • Latest Version: 1.2.5
  • Postgres Support: 17,16,15,14,13
  • Need Load: Shared library do not need explicit loading
  • Need DDL: Need CREATE EXTENSION DDL
  • Relocatable: Can be installed into other schemas
  • Trusted: Trusted, Can be created by user with CREATE Privilege
  • Schemas: N/A
  • Requires: postgis, pointcloud

RPM / DEB

  • RPM Repo: PGDG
  • RPM Name: pointcloud_$v*
  • RPM Ver : 1.2.5
  • RPM Deps: N/A
  • DEB Repo: PGDG
  • DEB Name: postgresql-$v-pointcloud
  • DEB Ver : 1.2.5
  • DEB Deps: N/A

Packages

OS Arch PG17 PG16 PG15 PG14 PG13
el8 x86_64 pointcloud_17
PGDG 1.2.5
pointcloud_16
PGDG 1.2.5
pointcloud_15
PGDG 1.2.5
pointcloud_14
PGDG 1.2.5
pointcloud_13
PGDG 1.2.5
el8 aarch64 pointcloud_17
PGDG 1.2.5
pointcloud_16
PGDG 1.2.5
pointcloud_15
PGDG 1.2.5
pointcloud_14
PGDG 1.2.5
pointcloud_13
PGDG 1.2.5
el9 x86_64 pointcloud_17
PGDG 1.2.5
pointcloud_16
PGDG 1.2.5
pointcloud_15
PGDG 1.2.5
pointcloud_14
PGDG 1.2.5
pointcloud_13
PGDG 1.2.5
el9 aarch64 pointcloud_17
PGDG 1.2.5
pointcloud_16
PGDG 1.2.5
pointcloud_15
PGDG 1.2.5
pointcloud_14
PGDG 1.2.5
pointcloud_13
PGDG 1.2.5
d12 x86_64 postgresql-17-pointcloud
PGDG 1.2.5
postgresql-16-pointcloud
PGDG 1.2.5
postgresql-15-pointcloud
PGDG 1.2.5
postgresql-14-pointcloud
PGDG 1.2.5
postgresql-13-pointcloud
PGDG 1.2.5
d12 aarch64 postgresql-17-pointcloud
PGDG 1.2.5
postgresql-16-pointcloud
PGDG 1.2.5
postgresql-15-pointcloud
PGDG 1.2.5
postgresql-14-pointcloud
PGDG 1.2.5
postgresql-13-pointcloud
PGDG 1.2.5
u22 x86_64 postgresql-17-pointcloud
PGDG 1.2.5
postgresql-16-pointcloud
PGDG 1.2.5
postgresql-15-pointcloud
PGDG 1.2.5
postgresql-14-pointcloud
PGDG 1.2.5
postgresql-13-pointcloud
PGDG 1.2.5
u22 aarch64 postgresql-17-pointcloud
PGDG 1.2.5
postgresql-16-pointcloud
PGDG 1.2.5
postgresql-15-pointcloud
PGDG 1.2.5
postgresql-14-pointcloud
PGDG 1.2.5
postgresql-13-pointcloud
PGDG 1.2.5
u24 x86_64 postgresql-17-pointcloud
PGDG 1.2.5
postgresql-16-pointcloud
PGDG 1.2.5
postgresql-15-pointcloud
PGDG 1.2.5
postgresql-14-pointcloud
PGDG 1.2.5
postgresql-13-pointcloud
PGDG 1.2.5
u24 aarch64 postgresql-17-pointcloud
PGDG 1.2.5
postgresql-16-pointcloud
PGDG 1.2.5
postgresql-15-pointcloud
PGDG 1.2.5
postgresql-14-pointcloud
PGDG 1.2.5
postgresql-13-pointcloud
PGDG 1.2.5

Installation

Install pointcloud_postgis via the pig CLI tool:


pig ext install pointcloud; # Extension Namepig ext install pointcloud_postgis; # normalized package name

Install pointcloud via Pigsty playbook:

./pgsql.yml -t pg_extension -e '{"pg_extensions": ["pointcloud"]}' # -l <cls>

Install pointcloud RPM from YUM repo directly:

dnf install pointcloud_17*;
dnf install pointcloud_16*;
dnf install pointcloud_15*;
dnf install pointcloud_14*;
dnf install pointcloud_13*;

Install pointcloud DEB from APT repo directly:

apt install postgresql-17-pointcloud;
apt install postgresql-16-pointcloud;
apt install postgresql-15-pointcloud;
apt install postgresql-14-pointcloud;
apt install postgresql-13-pointcloud;

Enable pointcloud_postgis extension on PostgreSQL cluster:

CREATE EXTENSION pointcloud_postgis CASCADE;




Last modified 2025-02-17: add extension part (cfa504b)