Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/adriankumpf/srtm
Query locations for elevation data from the NASA Shuttle Radar Topography Mission
https://github.com/adriankumpf/srtm
elevation elixir-lang srtm srtm1 srtm3 usgs-data
Last synced: about 2 months ago
JSON representation
Query locations for elevation data from the NASA Shuttle Radar Topography Mission
- Host: GitHub
- URL: https://github.com/adriankumpf/srtm
- Owner: adriankumpf
- License: mit
- Created: 2019-08-25T20:04:58.000Z (over 5 years ago)
- Default Branch: master
- Last Pushed: 2024-04-12T21:12:40.000Z (8 months ago)
- Last Synced: 2024-04-14T15:23:37.811Z (8 months ago)
- Topics: elevation, elixir-lang, srtm, srtm1, srtm3, usgs-data
- Language: Elixir
- Homepage:
- Size: 19.8 MB
- Stars: 5
- Watchers: 3
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- Changelog: CHANGELOG.md
- License: LICENSE
Awesome Lists containing this project
- fucking-awesome-elixir - srtm - Query locations for elevation data from the NASA Shuttle Radar Topography Mission. (Geolocation)
- awesome-elixir - srtm - Query locations for elevation data from the NASA Shuttle Radar Topography Mission. (Geolocation)
README
# SRTM
[![CI](https://github.com/adriankumpf/srtm/actions/workflows/elixir.yml/badge.svg)](https://github.com/adriankumpf/srtm/actions/workflows/elixir.yml)
[![Docs](https://img.shields.io/badge/hex-docs-green.svg?style=flat)](https://hexdocs.pm/srtm)
[![Hex.pm](https://img.shields.io/hexpm/v/srtm?color=%23714a94)](http://hex.pm/packages/srtm)A small library that provides a simple interface to query locations on the Earth for elevation data from the NASA Shuttle Radar Topography Mission (SRTM).
## Installation
Add `srtm` to your list of dependencies in `mix.exs`:
```elixir
def deps do
[
{:srtm, "~> 0.8"},
]
end
```## Examples
```elixir
iex> SRTM.get_elevation(36.455556, -116.866667)
{:ok, -51}
```See the [documentation](https://hexdocs.pm/srtm) for further information on configuration.