未提供项目描述
项目描述
ept-python
Python库,用于对Entwine Point Tile数据进行查询。
安装
使用git和pip
git clone https://github.com/hobu/ept-python.git
cd ept-python
pip install .
仅使用pip
pip install git+https://github.com/hobu/ept-python.git
用法
示例查询和输出到LasData对象
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)>
卸载
pip uninstall ept-python
变更日志
版本 0.4.0
- 更新到laspy 2.0
- 将lazrs添加到需求
- 修复了现有任务缓存被覆盖的bug #2
- 添加了对需求版本的限制
- 微小的PEP8样式更改