├── composer.json └── src ├── ArrayCollection.php ├── BoundingBox ├── BoundingBox.php └── BoundingBoxInterface.php ├── Convert ├── Convert.php └── ConvertInterface.php ├── Coordinate ├── Coordinate.php ├── CoordinateCollection.php ├── CoordinateInterface.php └── Ellipsoid.php ├── CoordinateCouple.php ├── Distance ├── Distance.php └── DistanceInterface.php ├── Exception ├── ExceptionInterface.php ├── InvalidArgumentException.php ├── NotConvergingException.php ├── NotMatchingEllipsoidException.php └── RuntimeException.php ├── Geohash ├── Geohash.php ├── GeohashInterface.php └── TenTen.php ├── GeometryCollection.php ├── GeometryInterface.php ├── Geotools.php ├── GeotoolsInterface.php ├── Polygon ├── MultiPolygon.php ├── Polygon.php └── PolygonInterface.php └── Vertex ├── Vertex.php └── VertexInterface.php /composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laravie/geotools/HEAD/composer.json -------------------------------------------------------------------------------- /src/ArrayCollection.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laravie/geotools/HEAD/src/ArrayCollection.php -------------------------------------------------------------------------------- /src/BoundingBox/BoundingBox.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laravie/geotools/HEAD/src/BoundingBox/BoundingBox.php -------------------------------------------------------------------------------- /src/BoundingBox/BoundingBoxInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laravie/geotools/HEAD/src/BoundingBox/BoundingBoxInterface.php -------------------------------------------------------------------------------- /src/Convert/Convert.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laravie/geotools/HEAD/src/Convert/Convert.php -------------------------------------------------------------------------------- /src/Convert/ConvertInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laravie/geotools/HEAD/src/Convert/ConvertInterface.php -------------------------------------------------------------------------------- /src/Coordinate/Coordinate.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laravie/geotools/HEAD/src/Coordinate/Coordinate.php -------------------------------------------------------------------------------- /src/Coordinate/CoordinateCollection.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laravie/geotools/HEAD/src/Coordinate/CoordinateCollection.php -------------------------------------------------------------------------------- /src/Coordinate/CoordinateInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laravie/geotools/HEAD/src/Coordinate/CoordinateInterface.php -------------------------------------------------------------------------------- /src/Coordinate/Ellipsoid.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laravie/geotools/HEAD/src/Coordinate/Ellipsoid.php -------------------------------------------------------------------------------- /src/CoordinateCouple.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laravie/geotools/HEAD/src/CoordinateCouple.php -------------------------------------------------------------------------------- /src/Distance/Distance.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laravie/geotools/HEAD/src/Distance/Distance.php -------------------------------------------------------------------------------- /src/Distance/DistanceInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laravie/geotools/HEAD/src/Distance/DistanceInterface.php -------------------------------------------------------------------------------- /src/Exception/ExceptionInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laravie/geotools/HEAD/src/Exception/ExceptionInterface.php -------------------------------------------------------------------------------- /src/Exception/InvalidArgumentException.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laravie/geotools/HEAD/src/Exception/InvalidArgumentException.php -------------------------------------------------------------------------------- /src/Exception/NotConvergingException.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laravie/geotools/HEAD/src/Exception/NotConvergingException.php -------------------------------------------------------------------------------- /src/Exception/NotMatchingEllipsoidException.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laravie/geotools/HEAD/src/Exception/NotMatchingEllipsoidException.php -------------------------------------------------------------------------------- /src/Exception/RuntimeException.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laravie/geotools/HEAD/src/Exception/RuntimeException.php -------------------------------------------------------------------------------- /src/Geohash/Geohash.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laravie/geotools/HEAD/src/Geohash/Geohash.php -------------------------------------------------------------------------------- /src/Geohash/GeohashInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laravie/geotools/HEAD/src/Geohash/GeohashInterface.php -------------------------------------------------------------------------------- /src/Geohash/TenTen.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laravie/geotools/HEAD/src/Geohash/TenTen.php -------------------------------------------------------------------------------- /src/GeometryCollection.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laravie/geotools/HEAD/src/GeometryCollection.php -------------------------------------------------------------------------------- /src/GeometryInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laravie/geotools/HEAD/src/GeometryInterface.php -------------------------------------------------------------------------------- /src/Geotools.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laravie/geotools/HEAD/src/Geotools.php -------------------------------------------------------------------------------- /src/GeotoolsInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laravie/geotools/HEAD/src/GeotoolsInterface.php -------------------------------------------------------------------------------- /src/Polygon/MultiPolygon.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laravie/geotools/HEAD/src/Polygon/MultiPolygon.php -------------------------------------------------------------------------------- /src/Polygon/Polygon.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laravie/geotools/HEAD/src/Polygon/Polygon.php -------------------------------------------------------------------------------- /src/Polygon/PolygonInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laravie/geotools/HEAD/src/Polygon/PolygonInterface.php -------------------------------------------------------------------------------- /src/Vertex/Vertex.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laravie/geotools/HEAD/src/Vertex/Vertex.php -------------------------------------------------------------------------------- /src/Vertex/VertexInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laravie/geotools/HEAD/src/Vertex/VertexInterface.php --------------------------------------------------------------------------------