Class Utils

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

public class Utils extends Object
This class is used to check if coordinates are in a posList including a coordinate transformation. See https://github.com/opengeospatial/ets-wcs20/issues/120
Author:
Benjamin Pross
  • Constructor Details

    • Utils

      public Utils()
  • Method Details

    • checkCoordinatesWithCrsTransformation

      public static boolean checkCoordinatesWithCrsTransformation(Object low1, Object low2, Object high1, Object high2, Object posList, Object srcCrs, Object targetCrs)
      Static method to check if coordinates are in a posList including a coordinate transformation. The parameters come from XPath expressions and can be ArrayList or TextFragmentValue.
      Parameters:
      low1 - Value of lower corner x
      low2 - Value of lower corner y
      high1 - Value of upper corner x
      high2 - Value of upper corner y
      posList - List of coordinates that low1, low2, high1 and high2 are checked against
      srcCrs - Source CRS
      targetCrs - Target CRS
      Returns:
      true if the transformed low1, low2, high1 and high2 coordinates are in the posList