View Source Geocalc.Shape.Circle (Geocalc v0.8.5)

Circle describes a circular geographical area, centered on latitude, longitude, with a radius in meters.

latitude and longitude could be Decimal degrees or Geocalc.DMS.

Link to this section Summary

Link to this section Types

@type t() :: %Geocalc.Shape.Circle{
  latitude: number() | Decimal.t() | Geocalc.DMS.t(),
  longitude: number() | Decimal.t() | Geocalc.DMS.t(),
  radius: number()
}