Package nl.b3p.csw.jaxb.gml
Class SphereType
-
public class SphereType extends AbstractGriddedSurfaceType
A sphere is a gridded surface given as a family of circles whose positions vary linearly along the axis of the sphere, and whise radius varies in proportions to the cosine function of the central angle. The horizontal circles resemble lines of constant latitude, and the vertical arcs resemble lines of constant longitude. NOTE! If the control points are sorted in terms of increasing longitude, and increasing latitude, the upNormal of a sphere is the outward normal. EXAMPLE If we take a gridded set of latitudes and longitudes in degrees,(u,v) such as (-90,-180) (-90,-90) (-90,0) (-90, 90) (-90, 180) (-45,-180) (-45,-90) (-45,0) (-45, 90) (-45, 180) ( 0,-180) ( 0,-90) ( 0,0) ( 0, 90) ( 0, 180) ( 45,-180) ( 45,-90) ( 45,0) ( 45, -90) ( 45, 180) ( 90,-180) ( 90,-90) ( 90,0) ( 90, -90) ( 90, 180) And map these points to 3D using the usual equations (where R is the radius of the required sphere). z = R sin u x = (R cos u)(sin v) y = (R cos u)(cos v) We have a sphere of Radius R, centred at (0,0), as a gridded surface. Notice that the entire first row and the entire last row of the control points map to a single point in each 3D Euclidean space, North and South poles respectively, and that each horizontal curve closes back on itself forming a geometric cycle. This gives us a metrically bounded (of finite size), topologically unbounded (not having a boundary, a cycle) surface.Java class for SphereType complex type.
The following schema fragment specifies the expected content contained within this class.
<complexType name="SphereType"> <complexContent> <extension base="{http://www.opengis.net/gml}AbstractGriddedSurfaceType"> <attribute name="horizontalCurveType" type="{http://www.opengis.net/gml}CurveInterpolationType" fixed="circularArc3Points" /> <attribute name="verticalCurveType" type="{http://www.opengis.net/gml}CurveInterpolationType" fixed="circularArc3Points" /> </extension> </complexContent> </complexType>
-
-
Nested Class Summary
-
Nested classes/interfaces inherited from class nl.b3p.csw.jaxb.gml.AbstractGriddedSurfaceType
AbstractGriddedSurfaceType.Row
-
-
Field Summary
Fields Modifier and Type Field Description protected CurveInterpolationTypehorizontalCurveTypeprotected CurveInterpolationTypeverticalCurveType-
Fields inherited from class nl.b3p.csw.jaxb.gml.AbstractGriddedSurfaceType
columns, row, rows
-
-
Constructor Summary
Constructors Constructor Description SphereType()Default no-arg constructorSphereType(List<AbstractGriddedSurfaceType.Row> row, BigInteger rows, BigInteger columns, CurveInterpolationType horizontalCurveType, CurveInterpolationType verticalCurveType)Fully-initialising value constructor
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description CurveInterpolationTypegetHorizontalCurveType()Gets the value of the horizontalCurveType property.CurveInterpolationTypegetVerticalCurveType()Gets the value of the verticalCurveType property.voidsetHorizontalCurveType(CurveInterpolationType value)Sets the value of the horizontalCurveType property.voidsetVerticalCurveType(CurveInterpolationType value)Sets the value of the verticalCurveType property.-
Methods inherited from class nl.b3p.csw.jaxb.gml.AbstractGriddedSurfaceType
getColumns, getRow, getRows, setColumns, setRows
-
-
-
-
Field Detail
-
horizontalCurveType
protected CurveInterpolationType horizontalCurveType
-
verticalCurveType
protected CurveInterpolationType verticalCurveType
-
-
Constructor Detail
-
SphereType
public SphereType()
Default no-arg constructor
-
SphereType
public SphereType(List<AbstractGriddedSurfaceType.Row> row, BigInteger rows, BigInteger columns, CurveInterpolationType horizontalCurveType, CurveInterpolationType verticalCurveType)
Fully-initialising value constructor
-
-
Method Detail
-
getHorizontalCurveType
public CurveInterpolationType getHorizontalCurveType()
Gets the value of the horizontalCurveType property.- Returns:
- possible object is
CurveInterpolationType
-
setHorizontalCurveType
public void setHorizontalCurveType(CurveInterpolationType value)
Sets the value of the horizontalCurveType property.- Parameters:
value- allowed object isCurveInterpolationType
-
getVerticalCurveType
public CurveInterpolationType getVerticalCurveType()
Gets the value of the verticalCurveType property.- Returns:
- possible object is
CurveInterpolationType
-
setVerticalCurveType
public void setVerticalCurveType(CurveInterpolationType value)
Sets the value of the verticalCurveType property.- Parameters:
value- allowed object isCurveInterpolationType
-
-