Skip to content
This repository was archived by the owner on Sep 12, 2023. It is now read-only.

palmetto/ept-python

This branch is 13 commits behind hobu/ept-python:master.

Folders and files

NameName
Last commit message
Last commit date

Latest commit

bd358b5 · Sep 29, 2021

History

29 Commits
Sep 23, 2021
Sep 29, 2021
Sep 29, 2021
Apr 23, 2019
Sep 23, 2021
Sep 28, 2021
Sep 22, 2021
Sep 23, 2021
Sep 29, 2021

Repository files navigation

ept-python

Python library for making queries against Entwine Point Tile data.

Install

Using git and pip:

git clone https://github.com/hobu/ept-python.git
cd ept-python
pip install .

Using just pip:

pip install git+https://github.com/hobu/ept-python.git

Usage

Example query and output to LasData object:

import ept

url = 'https://na-c.entwine.io/red-rocks'
bounds = ept.Bounds(
    482298, #xmin
    4390602, #ymin
    1762, #zmin
    482421, #xmax
    4390690, #ymax
    2113 #zmax
)

query = ept.EPT(url, bounds=bounds)
las = query.as_laspy()
print(las)
<LasData(1.2, point fmt: <PointFormat(3, 4 bytes of extra dims)>, 98050 points, 4 vlrs)>

Uninstall

pip uninstall ept-python

About

Entwine Python tools

Resources

Stars

Watchers

Forks

Packages

No packages published

Languages

  • Python 100.0%