Class GeometryTransformer

java.lang.Object
org.opengis.cite.wcs20.GeometryTransformer

public class GeometryTransformer extends Object
Modified from ets-ogcapi-features10 GeometryTransformer
Author:
Lyn Goltz
  • Constructor Summary

    Constructors
    Constructor
    Description
    GeometryTransformer(String srcCrs, String targetCrs)
    Constructor for GeometryTransformer.
  • Method Summary

    Modifier and Type
    Method
    Description
    getCodeWithAuthority.
    org.locationtech.jts.geom.GeometryFactory
    Getter for the field geometryFactory.
    int
    srid from the passed crs
    org.locationtech.jts.geom.Geometry
    transform(org.locationtech.jts.geom.Geometry geometryToTransform)
    transform.
    org.locationtech.jts.geom.Geometry
    transform(org.locationtech.jts.geom.GeometryCollection geometryToTransform)
    transform.
    org.locationtech.jts.geom.LineString
    transform(org.locationtech.jts.geom.LineString geometryToTransform)
    transform.
    org.locationtech.jts.geom.MultiLineString
    transform(org.locationtech.jts.geom.MultiLineString geometryToTransform)
    transform.
    org.locationtech.jts.geom.MultiPoint
    transform(org.locationtech.jts.geom.MultiPoint geometryToTransform)
    transform.
    org.locationtech.jts.geom.MultiPolygon
    transform(org.locationtech.jts.geom.MultiPolygon geometryToTransform)
    transform.
    org.locationtech.jts.geom.Point
    transform(org.locationtech.jts.geom.Point geometryToTransform)
    transform.
    org.locationtech.jts.geom.Polygon
    transform(org.locationtech.jts.geom.Polygon geometryToTransform)
    transform.

    Methods inherited from class java.lang.Object

    clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
  • Constructor Details

    • GeometryTransformer

      public GeometryTransformer(String srcCrs, String targetCrs)

      Constructor for GeometryTransformer.

      Parameters:
      srcCrs - source crs, , never null
      targetCrs - target crs, , never null
  • Method Details

    • transform

      public org.locationtech.jts.geom.Geometry transform(org.locationtech.jts.geom.Geometry geometryToTransform)

      transform.

      Parameters:
      geometryToTransform - a Geometry object
      Returns:
      a Geometry object
    • transform

      public org.locationtech.jts.geom.Point transform(org.locationtech.jts.geom.Point geometryToTransform)

      transform.

      Parameters:
      geometryToTransform - a Point object
      Returns:
      a Point object
    • transform

      public org.locationtech.jts.geom.LineString transform(org.locationtech.jts.geom.LineString geometryToTransform)

      transform.

      Parameters:
      geometryToTransform - a LineString object
      Returns:
      a LineString object
    • transform

      public org.locationtech.jts.geom.Polygon transform(org.locationtech.jts.geom.Polygon geometryToTransform)

      transform.

      Parameters:
      geometryToTransform - a Polygon object
      Returns:
      a Polygon object
    • transform

      public org.locationtech.jts.geom.Geometry transform(org.locationtech.jts.geom.GeometryCollection geometryToTransform)

      transform.

      Parameters:
      geometryToTransform - a GeometryCollection object
      Returns:
      a Geometry object
    • transform

      public org.locationtech.jts.geom.MultiPoint transform(org.locationtech.jts.geom.MultiPoint geometryToTransform)

      transform.

      Parameters:
      geometryToTransform - a MultiPoint object
      Returns:
      a MultiPoint object
    • transform

      public org.locationtech.jts.geom.MultiLineString transform(org.locationtech.jts.geom.MultiLineString geometryToTransform)

      transform.

      Parameters:
      geometryToTransform - a MultiLineString object
      Returns:
      a MultiLineString object
    • transform

      public org.locationtech.jts.geom.MultiPolygon transform(org.locationtech.jts.geom.MultiPolygon geometryToTransform)

      transform.

      Parameters:
      geometryToTransform - a MultiPolygon object
      Returns:
      a MultiPolygon object
    • getSrid

      public int getSrid(String code)
      srid from the passed crs
      Parameters:
      code - a String object
      Returns:
      the parsed srid, -1 if the crs is null
    • getCodeWithAuthority

      public String getCodeWithAuthority(String code)

      getCodeWithAuthority.

      Parameters:
      code - a String object
      Returns:
      the code with the authority: EPSG:CODE, may be null
    • getGeometryFactory

      public org.locationtech.jts.geom.GeometryFactory getGeometryFactory()

      Getter for the field geometryFactory.

      Returns:
      a GeometryFactory object