@Test
public void testOGCPoint() {
Point p = new Point(10.0, 20.0);
OGCGeometry ogcPoint = new OGCPoint(p, null);
String result = ogcPoint.asGeoJson();
assertEquals("{\"type\":\"Point\",\"coordinates\":[10.0,20.0]}", result);
}
@Test
public void testMultiPoint() {