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 error.ex
Raw

lib/error.ex

defmodule SRTM.Error do
@moduledoc """
The error struct.
"""
@enforce_keys [:reason, :message]
defstruct [:reason, :message]
@type t :: %__MODULE__{reason: atom, message: String.t()}
end