defmodule GeolocationClient.Entities.Location do @moduledoc """ Represents a location entity - full LLA """ defstruct [ :latitude, :longitude, :altitude ] @type t :: %__MODULE__{ latitude: float(), longitude: float(), altitude: float() } end