public class Point extends Location
Modifier and Type | Field and Description |
---|---|
static double |
EARTH_QUADRATIC_MEAN_RADIUS |
static int |
INTERSECTING |
static String |
MY_URI |
static int |
NOT_COMPUTABLE_DISTANCE |
static String |
PROP_COORDINATE_SYSTEM |
static String |
PROP_X |
static String |
PROP_Y |
static String |
PROP_Z |
PROP_CONTAINS, PROP_HAS_NAME, PROP_IS_ADJACENT_TO, PROP_IS_CONNECTED_TO, PROP_IS_CONTAINED_IN
NON_COMPARABLE_INDIVIDUALS
OWL_NAMESPACE, TYPE_OWL_INDIVIDUAL, TYPE_OWL_THING
ANON_URI_PREFIX, blockAddingTypes, isXMLLiteral, NAMESPACE_PREFIX, ns_delim_index, PROP_INVOLVED_HUMAN_USER, PROP_RDF_FIRST, PROP_RDF_REST, PROP_RDF_TYPE, PROP_RDFS_COMMENT, PROP_RDFS_LABEL, PROP_SERIALIZATION_FULL, PROP_SERIALIZATION_OPTIONAL, PROP_SERIALIZATION_REDUCED, PROP_SERIALIZATION_UNDEFINED, props, RDF_EMPTY_LIST, RDF_NAMESPACE, RDFS_NAMESPACE, SERVICE_NAMESPACE, TYPE_RDF_LIST, TYPE_RDFS_CLASS, uri, VOCABULARY_NAMESPACE
Constructor and Description |
---|
Point()
Constructor just for usage by de-serializers.
|
Point(double x,
double y,
CoordinateSystem system) |
Point(double x,
double y,
double z,
CoordinateSystem system) |
Point(String uri)
Constructor just for usage by de-serializers.
|
Point(String uri,
double x,
double y,
CoordinateSystem system)
Point constructor.
|
Point(String uri,
double x,
double y,
double z,
CoordinateSystem system)
Point constructor.
|
Modifier and Type | Method and Description |
---|---|
void |
castTo3D()
ensures a valid z value
|
double[] |
get2DCoordinates() |
double[] |
get3DCoordinates() |
String |
getClassURI()
Get the class URI for this ManagedIndividual.
|
CoordinateSystem |
getCoordinateSystem() |
float |
getDistanceTo(Location other)
Both points have to be in the same CoordinateSystem If the System is
WGS84, a point in latitude/longitude is assume If not, the euclidean
distance is returned.
|
Point |
getInHigherCoordinateSystem()
if the point is in a OriginedMetric, the point will be transformed to the
next higher system A 2d point gets transformed to a 3d point, because all
non local coordinate systems are 3d
|
Point |
getInHigherCoordinateSystem(CoordinateSystem system)
if the point is in a OriginedMetric, the point will be transformed to the
given higher system A 2d point gets transformed to a 3d point, because
all non local coordinate systems are 3d
|
int |
getPropSerializationType(String propURI)
Answers if the given property has to be considered when serializing this
individual in a minimized way, and if not ignore-able, whether its value
should be presented in its full form or can be reduced.
|
double |
getX() |
double |
getY() |
double |
getZ() |
boolean |
is2D() |
boolean |
isWellFormed()
Returns true, if the state of the resource is valid, otherwise false.
|
void |
set2DCoordinates(double x,
double y) |
void |
set3DCoordinates(double x,
double y,
double z) |
void |
setCoordinateSystem(CoordinateSystem system) |
void |
setZ(double z) |
String |
toString()
Get a String representation of this Resource; returns the URI.
|
addAdjacentLocation, addConnectedLocation, addContainedLocation, clearAdjacentLocations, clearConnectedLocations, clearContainedLocations, clearContainingLocations, compareTo, getAdjacentLocations, getConnectedLocations, getContainedLocations, getContainingLocation, getDistanceTo, getNext, getPrevious, hasConnectionTo, isAdjacentTo, ord, removeAdjacentLocation, removeConnectedLocation, removeContainedLocation, setContainingLocation, setProperty
equal, getClassMaximum, getClassMaximum, getClassMinimum, getClassMinimum, getMaximum, getMinimum, greater, greaterEqual, less, lessEqual
checkCompatibility, checkMembership, copy, deepCopy, getClassRestrictionsOnProperty, getInstance, getNonAbstractSuperClasses, getNonabstractSuperClasses, getOntClassInfo, getTypeURI, isRegisteredClassURI, setPropertyPathFromOffset, toManagedIndividual
addType, getLocalName, getNamespace, getProperty, getPropertyURIs, getType, getTypes, getURI, hasQualifiedName, isAnon, numberOfProperties
addMultiLangProp, asList, asList, asRDFList, changeProperty, equals, generateAnonURI, getDefaultLang, getFilename, getMultiLangProp, getOrConstructLabel, getOrConstructLabel, getResource, getResourceComment, getResourceLabel, getResourceLabel, getStaticFieldValue, hashCode, hasProperty, isAnon, isBlockingAddingTypes, isClosedCollection, isQualifiedName, literal, representsQualifiedURI, serializesAsXMLLiteral, setPropertyPath, setPropertyPath, setResourceComment, setResourceLabel, toStringRecursive, toStringRecursive, unliteral
public static final String MY_URI
public static final String PROP_X
public static final String PROP_Y
public static final String PROP_Z
public static final String PROP_COORDINATE_SYSTEM
public static final int NOT_COMPUTABLE_DISTANCE
public static final int INTERSECTING
public static final double EARTH_QUADRATIC_MEAN_RADIUS
public Point()
public Point(String uri)
public Point(String uri, double x, double y, double z, CoordinateSystem system)
uri
- The ontological object URIx
- y
- z
- system
- the coordinate system of the pointpublic Point(double x, double y, double z, CoordinateSystem system)
public Point(double x, double y, CoordinateSystem system)
public Point(String uri, double x, double y, CoordinateSystem system)
uri
- The ontological object URIx
- y
- system
- the coordinate system of the pointpublic String getClassURI()
ManagedIndividual
getClassURI
in class Location
ManagedIndividual.getClassURI()
public int getPropSerializationType(String propURI)
ManagedIndividual
Resource.PROP_SERIALIZATION_OPTIONAL
,
Resource.PROP_SERIALIZATION_REDUCED
, or Resource.PROP_SERIALIZATION_FULL
.
It can be assumed that the given property is one of those returned by
FinalizedResource.getPropertyURIs()
. Decision criterion should be if the value of
this property is absolutely necessary when this resource is being sent to
a remote node. If the subclass rates it as unlikely that the receiver
side would need this info, the answer should be
PROP_SERIALIZATION_OPTIONAL
in favor of lower communication
traffic and higher performance even at risk of a possible additional
query on the receiver side for fetching this info. With the same
rationale, if a property should be included in the process of
serialization, it is preferable to include it in a reduced form; in this
case the return value should be PROP_SERIALIZATION_REDUCED
,
otherwise PROP_SERIALIZATION_FULL
can be returned.getPropSerializationType
in class Location
public double[] get3DCoordinates()
public double[] get2DCoordinates()
public double getZ()
public double getX()
public double getY()
public void set2DCoordinates(double x, double y)
public void set3DCoordinates(double x, double y, double z)
public void setZ(double z)
public void setCoordinateSystem(CoordinateSystem system)
public CoordinateSystem getCoordinateSystem()
public boolean isWellFormed()
Resource
Subclasses should overwrite this methods as the default implementation returns always true.
isWellFormed
in class ManagedIndividual
public float getDistanceTo(Location other)
public Point getInHigherCoordinateSystem()
public Point getInHigherCoordinateSystem(CoordinateSystem system)
system
- the target systempublic String toString()
Resource
public boolean is2D()
public void castTo3D()
Copyright © 2018 universAAL Consortium. All rights reserved.