No project description provided
Project description
NASA SRTM altitude data parsing in Python
Provides an API onto SRTM .hgt
or .hgt.zip
files.
Requires Python 3.8, may work with Python 3.6 & 3.7.
Installation
pip install python-srtm
export SRTM1_DIR=/path/to/srtm1/
export SRTM3_DIR=/path/to/srtm3/
Use
You can access either SRTM1 or SRTM3 data. SRTM 1, for example:
# SRTM1
python
>>> from srtm import Srtm1HeightMapCollection
>>> srtm1_data = Srtm1HeightMapCollection()
>>> srtm1_data.get_altitude(latitude=40.123, longitude=-7.456)
615
>>> Srtm1HeightMapCollection().get_elevation_profile(40.123, -7.456, 40.129, -7.460)
[615, 620, 618, 620, 616, 603, 593, 582, 575, 579, 580, 589, 589, 581, 565, 553, 545, 541, 534, 533, 529, 520, 514]
Or SRTM3:
# SRTM3
python
>>> from srtm import Srtm3HeightMapCollection
>>> srtm3_data = Srtm3HeightMapCollection()
>>> srtm3_data.get_altitude(latitude=40.123, longitude=-7.456)
608
>>> Srtm3HeightMapCollection().get_elevation_profile(40.123, -7.456, 40.129, -7.460)
[626, 616, 585, 593, 577, 548, 528, 514]
Release process
For internal reference:
# Run the tests
pytest
# Update the setup.py
dephell convert
black setup.py
# Ensure poetry.lock is up to date
poetry lock
export VERSION="VERSION HERE"
# Version bump
poetry version $VERSION
# Commit
git add .
git commit -m "Releasing version $VERSION"
# Tagging and branching
git tag "v$VERSION"
git branch "v$VERSION"
git push origin \
refs/tags/"v$VERSION" \
refs/heads/"v$VERSION" \
master
poetry publish --build
Project details
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
python-srtm-0.2.0.tar.gz
(7.0 kB
view details)
Built Distribution
File details
Details for the file python-srtm-0.2.0.tar.gz
.
File metadata
- Download URL: python-srtm-0.2.0.tar.gz
- Upload date:
- Size: 7.0 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: poetry/1.0.2 CPython/3.8.1 Darwin/18.7.0
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 79b82eb64c87ae8b2477cb69a74c7aba8c22de1f375656637aec03a25e27b58d |
|
MD5 | 0736b534085f8c4bb46a472fb196889f |
|
BLAKE2b-256 | db5747fbe6fedba7d1563ee9c70a857d1ad64d93e1abc940e6cd74967adc3a4d |
File details
Details for the file python_srtm-0.2.0-py3-none-any.whl
.
File metadata
- Download URL: python_srtm-0.2.0-py3-none-any.whl
- Upload date:
- Size: 7.7 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: poetry/1.0.2 CPython/3.8.1 Darwin/18.7.0
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 450005e3bf475427df492dd501ec44cf3eac91850d342b1039ab7d162f6e1168 |
|
MD5 | a76f81be07cbe60a11f8d7e7f58dbce8 |
|
BLAKE2b-256 | b5d61c4041eb9cd3b4ba95bca55c6e8fdbc8ce2ae1b2af3af44b148b906fa784 |