Packages

Spatial databases and GIS SQL functions. Currently supports PostGIS, Spatialite, MySQL, MariaDB, and Geopackage.

Current section

Files

Jump to
geo_sql lib geo_sql postgis box2d.ex
Raw

lib/geo_sql/postgis/box2d.ex

defmodule GeoSQL.PostGIS.Box2D do
defstruct xmin: 0.0, ymin: 0.0, xmax: 0.0, ymax: 0.0
@type t :: %__MODULE__{xmin: float, ymin: float, xmax: float, ymax: float}
end