Add spatial features to an H2 database
Execute the following sql to init spatial features :
CREATE ALIAS IF NOT EXISTS SPATIAL_INIT FOR
"CreateSpatialExtension.initSpatialExtension";
CALL SPATIAL_INIT();
Returns the last coordinate of a Geometry as a POINT, given that the
Geometry is a LINESTRING or a MULTILINESTRING containing only one
LINESTRING; Returns NULL for all other Geometries.
ST_EndPoint() -
Constructor for class org.h2gis.h2spatial.internal.function.spatial.properties.ST_EndPoint
ST_OrderingEquals compares two geometries and t (TRUE) if the geometries are equal
and the coordinates are in the same order; otherwise it returns f (FALSE).
Returns the first coordinate of a Geometry as a POINT, given that the
Geometry is a LINESTRING or a MULTILINESTRING containing only one
LINESTRING; Returns NULL for all other Geometries.