Represents a single point in a particular coordinate reference system.
Value that represents a point can be created using Values.point(int, double, double)
or Values.point(int, double, double, double)
method.
-
Method Summary
-
Method Details
-
srid
int srid()Retrieve identifier of the coordinate reference system for this point.- Returns:
- coordinate reference system identifier.
-
x
double x()Retrievex
coordinate of this point.- Returns:
- the
x
coordinate value.
-
y
double y()Retrievey
coordinate of this point.- Returns:
- the
y
coordinate value.
-
z
double z()Retrievez
coordinate of this point.- Returns:
- the
z
coordinate value orDouble.NaN
if not applicable.
-