- All Known Subinterfaces:
BoundingPolygon
,GeographicBoundingBox
,GeographicDescription
@Classifier(ABSTRACT)
@UML(identifier="EX_GeographicExtent",
specification=ISO_19115)
public interface GeographicExtent
Base interface for geographic area of the resource.
- Since:
- 1.0
-
Method Summary
Modifier and TypeMethodDescriptiondefault Boolean
Indication of whether the bounding polygon encompasses an area covered by the data (inclusion) or an area where data is not present (exclusion).
-
Method Details
-
getInclusion
@UML(identifier="extentTypeCode", obligation=OPTIONAL, specification=ISO_19115) default Boolean getInclusion()Indication of whether the bounding polygon encompasses an area covered by the data (inclusion) or an area where data is not present (exclusion). The default value istrue
.- Returns:
true
for inclusion,false
for exclusion, ornull
if unspecified.
Departure from OGC/ISO standard in the name
The ISO identifier is"extentTypeCode"
and defines the value 1 for inclusion, and 0 for exclusion. GeoAPI uses a name which better expresses the meaning of the return value.
-