Class Envelopes

Object
Static
Envelopes

public final class Envelopes extends Static
Transforms envelopes to new Coordinate Reference Systems, and miscellaneous utilities.

Envelope transformations

All transform(…) methods in this class take in account the curvature of the transformed shape. For example, the shape of a geographic envelope (figure below on the left side) is not rectangular in a conic projection (figure below on the right side). In order to get the envelope represented by the red rectangle, projecting the four corners of the geographic envelope is not sufficient since we would miss the southerner part.
Example of curvature induced by a map projection
Envelope before map projection Shape of the projected envelope
Envelope in a geographic CRS Shape of the envelope transformed in a conic projection
Apache SIS tries to detect the curvature by transforming intermediate points in addition to the corners. While optional, it is strongly recommended that all Math­Transform implementations involved in the operation (directly or indirectly) support derivative, for more accurate calculation of curve extremum. This is the case of most Apache SIS implementations.

The transform(…) methods in this class expect an arbitrary Envelope with one of the following arguments: Math­Transform, Coordinate­Operation or Coordinate­Reference­System. The recommended method is the one expecting a Coordinate­Operation object, since it contains sufficient information for handling the cases of envelopes that encompass a pole. The method expecting a Coordinate­Reference­System object is merely a convenience method that infers the coordinate operation itself, but at the cost of performance if the same operation needs to be applied on many envelopes.

Since:
0.3
See Also:
  • Method Details

    • compound

      public static Envelope compound(Envelope... components) throws FactoryException
      Puts together a list of envelopes, each of them using an independent coordinate reference system. The dimension of the returned envelope is the sum of the dimension of all components. If all components have a coordinate reference system, then the returned envelope will have a compound coordinate reference system.
      Parameters:
      components - the envelopes to aggregate in a single envelope, in the given order.
      Returns:
      the aggregation of all given envelopes.
      Throws:
      Factory­Exception - if the geodetic factory failed to create the compound CRS.
      Since:
      1.0
      See Also:
    • union

      public static GeneralEnvelope union(Envelope... envelopes) throws TransformException
      Computes the union of all given envelopes, transforming them to a common CRS if necessary. If all envelopes use the same CRS (ignoring metadata) or if the CRS of all envelopes is null, then the union is computed without transforming any envelope. Otherwise all envelopes are transformed to a common CRS before union is computed. The CRS of the returned envelope may different than the CRS of all given envelopes.
      Parameters:
      envelopes - the envelopes for which to compute union. Null elements are ignored.
      Returns:
      union of given envelopes, or null if the given array does not contain non-null elements.
      Throws:
      Transform­Exception - if this method cannot determine a common CRS, or if a transformation failed.
      Since:
      1.0
      See Also:
    • intersect

      public static GeneralEnvelope intersect(Envelope... envelopes) throws TransformException
      Computes the intersection of all given envelopes, transforming them to a common CRS if necessary. If all envelopes use the same CRS (ignoring metadata) or if the CRS of all envelopes is null, then the intersection is computed without transforming any envelope. Otherwise all envelopes are transformed to a common CRS before intersection is computed. The CRS of the returned envelope may different than the CRS of all given envelopes.
      Parameters:
      envelopes - the envelopes for which to compute intersection. Null elements are ignored.
      Returns:
      intersection of given envelopes, or null if the given array does not contain non-null elements.
      Throws:
      Transform­Exception - if this method cannot determine a common CRS, or if a transformation failed.
      Since:
      1.0
      See Also:
    • findOperation

      public static CoordinateOperation findOperation(Envelope source, Envelope target) throws FactoryException
      Finds a mathematical operation from the CRS of the given source envelope to the CRS of the given target envelope. For non-null georeferenced envelopes, this method is equivalent to the following code with area­Of­Interest computed as the union of the two envelopes:
      return CRS​.find­Operation(Coordinate­Reference­System, Coordinate­Reference­System, Geographic­Bounding­Box) CRS​.find­Operation(source​.get­Coordinate­Reference­System(), target​.get­Coordinate­Reference­System(), area­Of­Interest)
      If at least one envelope is null or has no CRS, then this method returns null.
      Parameters:
      source - the source envelope, or null.
      target - the target envelope, or null.
      Returns:
      the mathematical operation from source CRS to target CRS, or null if at least one argument is null or has no CRS.
      Throws:
      Operation­Not­Found­Exception - if no operation was found between the given pair of CRS.
      Factory­Exception - if the operation cannot be created for another reason.
      Since:
      1.0
      See Also:
    • transform

      public static Envelope transform(Envelope envelope, CoordinateReferenceSystem targetCRS) throws TransformException
      Transforms the given envelope to the specified CRS. If any argument is null, or if the envelope CRS is null or the same instance than the given target CRS, then the given envelope is returned unchanged. Otherwise a new transformed envelope is returned.

      Performance tip

      If there is many envelopes to transform with the same source and target CRS, then it is more efficient to get the Coordinate­Operation or Math­Transform instance once and invoke one of the others transform(…) methods.
      Parameters:
      envelope - the envelope to transform (may be null).
      target­CRS - the target CRS (may be null).
      Returns:
      a new transformed envelope, or directly envelope if no change was required.
      Throws:
      Transform­Exception - if a transformation was required and failed.
      Since:
      0.5
    • transform

      public static GeneralEnvelope transform(CoordinateOperation operation, Envelope envelope) throws TransformException
      Transforms an envelope using the given coordinate operation. The transformation is only approximated: the returned envelope may be bigger than the smallest possible bounding box, but should not be smaller in most cases.

      This method can handle the case where the envelope contains the North or South pole, or when it cross the ±180° longitude.

      Usage note

      If the envelope CRS is non-null, then the caller should ensure that the operation source CRS is the same than the envelope CRS. In case of mismatch, this method transforms the envelope to the operation source CRS before to apply the operation. This extra step may cause a lost of accuracy. In order to prevent this method from performing such pre-transformation (if not desired), callers can ensure that the envelope CRS is null before to call this method.
      Parameters:
      operation - the operation to use.
      envelope - envelope to transform, or null. This envelope will not be modified.
      Returns:
      the transformed envelope, or null if envelope was null.
      Throws:
      Transform­Exception - if a transform failed.
      Since:
      0.5
      See Also:
    • transform

      public static GeneralEnvelope transform(MathTransform transform, Envelope envelope) throws TransformException
      Transforms an envelope using the given math transform. The transformation is only approximated: the returned envelope may be bigger than necessary, or smaller than required if the bounding box contains a pole. The coordinate reference system of the returned envelope will be null.

      Limitation

      This method cannot handle the case where the envelope contains the North or South pole. Envelopes crossing the ±180° longitude are handled only if the given transform contains Wraparound­Transform steps; this method does not add such steps itself. For a more robust envelope transformation, use transform(Coordinate­Operation, Envelope) instead.
      Parameters:
      transform - the transform to use.
      envelope - envelope to transform, or null. This envelope will not be modified.
      Returns:
      the transformed envelope, or null if envelope was null.
      Throws:
      Transform­Exception - if a transform failed.
      Since:
      0.5
      See Also:
    • wraparound

      public static GeneralEnvelope[] wraparound(MathTransform transform, Envelope envelope) throws TransformException
      Transforms potentially many times an envelope using the given math transform. If the given envelope is null, then this method returns an empty envelope. Otherwise if the transform does not contain any Wraparound­Transform step, then this method is equivalent to transform(Math­Transform, Envelope) returned in an array of length 1. Otherwise this method returns many transformed envelopes where each envelope describes approximately the same region. If the envelope CRS is geographic, the many envelopes are the same envelope shifted by 360° of longitude. If the envelope CRS is projected, then the 360° shifts are applied before the map projection. It may result in very different coordinates.
      Parameters:
      transform - the transform to use.
      envelope - envelope to transform, or null. This envelope will not be modified.
      Returns:
      the transformed envelopes, or an empty array if envelope was null.
      Throws:
      Transform­Exception - if a transform failed.
      Since:
      1.3
      See Also:
    • fromWKT

      public static Envelope fromWKT(CharSequence wkt) throws FactoryException
      Returns the bounding box of a geometry defined in Well Known Text (WKT) format. This method does not check the consistency of the provided WKT. For example, it does not check that every points in a LINESTRING have the same dimension. However, this method ensures that the parenthesis are balanced, in order to catch some malformed WKT. See General­Envelope(Char­Sequence) for more information about the parsing rules.

      Examples

      • BOX(-180 -90, 180 90) (not really a geometry, but understood by many software products)
      • POINT(6 10)
      • MULTIPOLYGON(((1 1, 5 1, 1 5, 1 1),(2 2, 3 2, 3 3, 2 2)))
      • GEOMETRYCOLLECTION(POINT(4 6),LINESTRING(3 8,7 10))
      Parameters:
      wkt - the BOX, POLYGON or other kind of element to parse.
      Returns:
      the envelope of the given geometry.
      Throws:
      Factory­Exception - if the given WKT cannot be parsed.
      See Also:
    • toString

      public static String toString(Envelope envelope)
      Formats the given envelope as a BOX element. The output is like below, where n is the number of dimensions (omitted if equals to 2):
      BOXnD(lower corner, upper corner)
      The string returned by this method can be parsed by the General­Envelope constructor.

      Note on standards

      The BOX element is not part of the standard Well Known Text (WKT) format. However, it is understood by many software libraries, for example GDAL and PostGIS.
      Parameters:
      envelope - the envelope to format.
      Returns:
      this envelope as a BOX or BOX3D (most typical dimensions) element.
      See Also:
    • toPolygonWKT

      public static String toPolygonWKT(Envelope envelope) throws IllegalArgumentException
      Formats the given envelope as a POLYGON element in the Well Known Text (WKT) format. POLYGON can be used as an alternative to BOX when the element needs to be considered as a standard WKT geometry.

      The string returned by this method can be parsed by the General­Envelope constructor.

      Parameters:
      envelope - the envelope to format.
      Returns:
      the envelope as a POLYGON in WKT format.
      Throws:
      Illegal­Argument­Exception - if the given envelope cannot be formatted.
      See Also:
    • toTimeRange

      public static Optional<Range<Instant>> toTimeRange(Envelope envelope)
      Returns the time range of the first dimension associated to a temporal CRS. This convenience method converts floating point values to instants using Default­Temporal­CRS​.to­Instant(double).
      Parameters:
      envelope - envelope from which to extract time range, or null if none.
      Returns:
      time range in the given envelope.
      Since:
      1.1
      See Also: