Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
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
- Host: GitHub
- URL: https://github.com/geotrellis/geotrellis-pointcloud
- Owner: geotrellis
- License: apache-2.0
- Created: 2017-08-15T09:54:49.000Z (over 7 years ago)
- Default Branch: master
- Last Pushed: 2020-10-05T01:41:32.000Z (over 4 years ago)
- Last Synced: 2024-04-14T05:47:30.424Z (9 months ago)
- Topics: geotrellis, gis, hacktoberfest, pdal, pointcloud, scala, spark
- Language: Scala
- Homepage:
- Size: 29.1 MB
- Stars: 26
- Watchers: 8
- Forks: 10
- Open Issues: 16
-
Metadata Files:
- Readme: README.md
- License: LICENSE
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/).