Packages

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)

Current section

Files

Jump to
srtm lib source.ex
Raw

lib/source.ex

defmodule SRTM.Source do
@moduledoc false
@callback fetch(client :: Tesla.Client.t(), path :: Path.t(), name :: String.t()) ::
{:ok, hgt_path :: Path.t()} | {:error, reason :: term}
end