assertNotNull(positionFactory);
assertNotNull(primitiveFactory);
// create position and point
DirectPosition here = positionFactory.createDirectPosition(ords);
Point point = primitiveFactory.createPoint(here);
assertNotNull(here.getCoordinateReferenceSystem());
assertNotNull(point.getCoordinateReferenceSystem());
assertEquals(here.getCoordinateReferenceSystem(), point.getCoordinateReferenceSystem());
assertEquals(here, point.getDirectPosition());
assertEquals(here.hashCode(), point.getDirectPosition().hashCode());
assertEquals(point.getCentroid(), here);
// get ordinates out of point
double[] ords2 = point.getCentroid().getCoordinate();
}