Package io.goobi.viewer.model.maps.coordinates


package io.goobi.viewer.model.maps.coordinates
Provides parsers and readers for converting geographic coordinate representations such as GeoJSON and WKT (point and polygon) into internal coordinate objects.
  • Class
    Description
    Discovers and holds all available ICoordinateReader implementations via classpath scanning and provides the appropriate reader for a given coordinate string.
    ICoordinateReader implementation that parses GeoJSON strings, supporting plain geometry objects, feature objects, and feature collections.
    Strategy interface for reading a coordinate string and converting it into a GeoJSON Geometry.
    ICoordinateReader implementation that parses WKT point strings (e.g.
    ICoordinateReader implementation that parses WKT polygon strings of the form POLYGON((x1 y1, x2 y2, ...)) into a Polygon geometry.