Package net.opengis.ows20
Interface BoundingBoxType
-
- All Superinterfaces:
EObject
,Notifier
- All Known Subinterfaces:
WGS84BoundingBoxType
- All Known Implementing Classes:
BoundingBoxTypeImpl
,WGS84BoundingBoxTypeImpl
public interface BoundingBoxType extends EObject
A representation of the model object 'Bounding Box Type'. XML encoded minimum rectangular bounding box (or region) parameter, surrounding all the associated data. This type is adapted from the EnvelopeType of GML 3.1, with modified contents and documentation for encoding a MINIMUM size box SURROUNDING all associated data.The following features are supported:
- See Also:
Ows20Package.getBoundingBoxType()
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description String
getCrs()
Returns the value of the 'Crs' attribute.BigInteger
getDimensions()
Returns the value of the 'Dimensions' attribute.List<Double>
getLowerCorner()
Returns the value of the 'Lower Corner' attribute.List<Double>
getUpperCorner()
Returns the value of the 'Upper Corner' attribute.void
setCrs(String value)
Sets the value of the 'Crs
' attribute.void
setDimensions(BigInteger value)
Sets the value of the 'Dimensions
' attribute.void
setLowerCorner(List<Double> value)
Sets the value of the 'Lower Corner
' attribute.void
setUpperCorner(List<Double> value)
Sets the value of the 'Upper Corner
' attribute.
-
-
-
Method Detail
-
getLowerCorner
List<Double> getLowerCorner()
Returns the value of the 'Lower Corner' attribute. Position of the bounding box corner at which the value of each coordinate normally is the algebraic minimum within this bounding box. In some cases, this position is normally displayed at the top, such as the top left for some image coordinates. For more information, see Subclauses 10.2.5 and C.13.- Returns:
- the value of the 'Lower Corner' attribute.
- See Also:
setLowerCorner(List)
,Ows20Package.getBoundingBoxType_LowerCorner()
-
setLowerCorner
void setLowerCorner(List<Double> value)
Sets the value of the 'Lower Corner
' attribute.- Parameters:
value
- the new value of the 'Lower Corner' attribute.- See Also:
getLowerCorner()
-
getUpperCorner
List<Double> getUpperCorner()
Returns the value of the 'Upper Corner' attribute. Position of the bounding box corner at which the value of each coordinate normally is the algebraic maximum within this bounding box. In some cases, this position is normally displayed at the bottom, such as the bottom right for some image coordinates. For more information, see Subclauses 10.2.5 and C.13.- Returns:
- the value of the 'Upper Corner' attribute.
- See Also:
setUpperCorner(List)
,Ows20Package.getBoundingBoxType_UpperCorner()
-
setUpperCorner
void setUpperCorner(List<Double> value)
Sets the value of the 'Upper Corner
' attribute.- Parameters:
value
- the new value of the 'Upper Corner' attribute.- See Also:
getUpperCorner()
-
getCrs
String getCrs()
Returns the value of the 'Crs' attribute. Usually references the definition of a CRS, as specified in [OGC Topic 2]. Such a CRS definition can be XML encoded using the gml:CoordinateReferenceSystemType in [GML 3.1]. For well known references, it is not required that a CRS definition exist at the location the URI points to. If no anyURI value is included, the applicable CRS must be either: a) Specified outside the bounding box, but inside a data structure that includes this bounding box, as specified for a specific OWS use of this bounding box type. b) Fixed and specified in the Implementation Specification for a specific OWS use of the bounding box type.- Returns:
- the value of the 'Crs' attribute.
- See Also:
setCrs(String)
,Ows20Package.getBoundingBoxType_Crs()
-
setCrs
void setCrs(String value)
Sets the value of the 'Crs
' attribute.- Parameters:
value
- the new value of the 'Crs' attribute.- See Also:
getCrs()
-
getDimensions
BigInteger getDimensions()
Returns the value of the 'Dimensions' attribute. The number of dimensions in this CRS (the length of a coordinate sequence in this use of the PositionType). This number is specified by the CRS definition, but can also be specified here.- Returns:
- the value of the 'Dimensions' attribute.
- See Also:
setDimensions(BigInteger)
,Ows20Package.getBoundingBoxType_Dimensions()
-
setDimensions
void setDimensions(BigInteger value)
Sets the value of the 'Dimensions
' attribute.- Parameters:
value
- the new value of the 'Dimensions' attribute.- See Also:
getDimensions()
-
-