https://vyperdatum.readthedocs.io/en/latest/
Project description
Vyperdatum
Vyperdatum [definition]
Installation
Vyperdatum requires GDAL
which can be installed from the conda's conda-forge channel. Below, we first create a conda environment, install GDAL
and Vperdatum.
conda create -n vd python=3.11
conda activate vd
conda install -c conda-forge gdal=3.8.4
conda install -c conda-forge python-pdal
pip install vyperdatum
Before running vyperdatum, you need to copy NOAA's datum files and the updated proj.db
into the PROJ data directory [download link will be added here]. This process may get automated in the future. The Proj data directory path can be found here:
import pyproj as pp
pp.datadir.get_data_dir()
Usage
Vyperdatum offers a Transformer
class to handle the transformation of point and raster data. The Transformer
class applies transformation from crs_from
to crs_to
coordinate reference systems. The transformation steps can be prescribed manually or let the Pipeline
class to infer:
from vyperdatum.transformer import Transformer
from vyperdatum.pipeline import Pipeline
crs_from = "EPSG:6346"
crs_to = "EPSG:6346+NOAA:5224"
tf = Transformer(crs_from=crs_from,
crs_to=crs_to,
steps=["EPSG:6346", "EPSG:6319", "EPSG:6318+NOAA:5224", "EPSG:6346+NOAA:5224"]
# steps=Pipeline(crs_from=crs_from, crs_to=crs_to).transformation_steps()
)
Once an instance of the Transformer
class is created, the transform()
method can be called. Vyperdatum supports all GDAL-supported drivers, variable resolution BAG, LAZ and NPZ point-cloud files.
transform
tf.transform(input_file=<PATH_TO_INPUT_RASTER_FILE>,
output_file=<PATH_TO_OUTPUT_RASTER_FILE>
)
You may also, directly call the file-specific transform methods instead of the generic Transformer.transform()
method:
Click to see pseudo-code examples
# dircet point transformation. x, y, z can be arrays, too.
x, y, z = 278881.198, 2719890.433, 0
xt, yt, zt = tf.transform_points(x, y, z, always_xy=True, allow_ballpark=False)
# GDAL-supported raster transform
tf.transform_raster(input_file=<PATH_TO_INPUT_RASTER_FILE>,
output_file=<PATH_TO_OUTPUT_RASTER_FILE>
)
# VRBAG transform
tf.transform_vrbag(input_file=<PATH_TO_INPUT_VRBAG_FILE>,
output_file=<PATH_TO_OUTPUT_VRBAG_FILE>
)
# LAZ transform
tf.transform_laz(input_file=<PATH_TO_INPUT_LAZ_FILE>,
output_file=<PATH_TO_OUTPUT_LAZ_FILE>
)
# NPZ transform
tf.transform_npz(input_file=<PATH_TO_INPUT_NPZ_FILE>,
output_file=<PATH_TO_OUTPUT_NPZ_FILE>
)
Documentation
For a quick start, more detailed descriptions or search through the API, see Vyperdatums's documentation at: https://vyperdatum.readthedocs.io.
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
File details
Details for the file vyperdatum-0.3.12.tar.gz
.
File metadata
- Download URL: vyperdatum-0.3.12.tar.gz
- Upload date:
- Size: 58.0 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/5.1.1 CPython/3.11.8
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 5770dd8456b098734bc4c727a3844f293a4650a3f5410e973a59c6861ef17335 |
|
MD5 | 639dfb5bc35db776e982b45fba316efd |
|
BLAKE2b-256 | 0093df61aace609a60fa12ba772b1ebac6cf9c1bf47b40ec689165eb3bb3acf9 |
File details
Details for the file vyperdatum-0.3.12-py3-none-any.whl
.
File metadata
- Download URL: vyperdatum-0.3.12-py3-none-any.whl
- Upload date:
- Size: 59.2 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/5.1.1 CPython/3.11.8
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 2c9facdcae6124799bc64f36ef4a3ca7fb43c3a8591b3211153a2558d8c6f370 |
|
MD5 | 53da7983aa8ce6c5ea799a32f84d540b |
|
BLAKE2b-256 | d152bb13dc60941c1587aefa71d84a12b8b1298d7d043f00f437b2a52d43fc33 |