Package org.opengis.cite.wcs20
Class Utils
java.lang.Object
org.opengis.cite.wcs20.Utils
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 Summary
Constructors -
Method Summary
-
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 beArrayList
orTextFragmentValue
.- Parameters:
low1
- Value of lower corner xlow2
- Value of lower corner yhigh1
- Value of upper corner xhigh2
- Value of upper corner yposList
- List of coordinates that low1, low2, high1 and high2 are checked againstsrcCrs
- Source CRStargetCrs
- Target CRS- Returns:
- true if the transformed low1, low2, high1 and high2 coordinates are in the posList
-