Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/geotrellis/geotrellis-pointcloud

GeoTrellis PointCloud library to work with any pointcloud data on Spark
https://github.com/geotrellis/geotrellis-pointcloud

geotrellis gis hacktoberfest pdal pointcloud scala spark

Last synced: about 2 months ago
JSON representation

GeoTrellis PointCloud library to work with any pointcloud data on Spark

Awesome Lists containing this project

README

        

# GeoTrellis PointCloud

[![Build Status](https://travis-ci.org/geotrellis/geotrellis-pointcloud.svg?branch=master)](https://travis-ci.org/geotrellis/geotrellis-pointcloud)
[![Bintray](https://api.bintray.com/packages/azavea/geotrellis/geotrellis-pointcloud/images/download.svg)](https://bintray.com/azavea/geotrellis/geotrellis-pointcloud)
[![Join the chat at https://gitter.im/geotrellis/geotrellis](https://badges.gitter.im/Join%20Chat.svg)](https://gitter.im/geotrellis/geotrellis?utm_source=badge&utm_medium=badge&utm_campaign=pr-badge&utm_content=badge)

GeoTrellis PointCloud uses PDAL bindings to work with PointCloud data.

> PDAL is Point Data Abstraction Library.
> GDAL for point cloud data.
- [pdal.io](https://pdal.io/)

PDAL supports reading pointcloud data in various of formats.
GeoTrellis PDAL allows read PointCloud data in any PDAL supported format into RDDs
and to rasterize this data using. It's also possible to store data as a GeoTrellis layer
without rasterizing, this feature allows to rasterize data on demand.

## GeoTrellis PointCloud with SBT

```scala
scalaVersion := "2.12.12"

libraryDependencies ++= Seq(
"com.azavea.geotrellis" %% "geotrellis-pointcloud" % ""
)

resolvers ++= Seq(
"GeoTrellis Bintray Repository" at "http://dl.bintray.com/azavea/geotrellis/"
)
```

NOTE: Using GeoTrellis PointCloud requires a working installation of
[PDAL](https://pdal.io/).