We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 45f88b0 commit ea07b6dCopy full SHA for ea07b6d
README.md
@@ -6,6 +6,11 @@ A python program that reads SRTM1 and SRTM3 Digital Elevation Model files.
6
Read on how this works: [https://librenepal.com/article/reading-srtm-data-with-python/](https://librenepal.com/article/reading-srtm-data-with-python/)
7
8
# Usage
9
+1. Put uncompressed *.hgt files on hgt/ directory or redefine the location of this
10
+directory with `HGT_DIR` environment variable.
11
+2. By default, the code will assume SRTM3 as the data format. You can also
12
+change it with `SRTM_TYPE` environment variable.
13
+3. Enjoy
14
```python
15
from srtm import get_elevation
16
print('Mt. Everest's Elevation: %d' % get_elevation(27.988056, 86.925278))
0 commit comments