org.locationtech.jts.io.geojson.GeoJsonReader Maven / Gradle / Ivy
/*
* Copyright (c) 2016 Vivid Solutions.
*
* All rights reserved. This program and the accompanying materials
* are made available under the terms of the Eclipse Public License 2.0
* and Eclipse Distribution License v. 1.0 which accompanies this distribution.
* The Eclipse Public License is available at http://www.eclipse.org/legal/epl-v20.html
* and the Eclipse Distribution License is available at
*
* http://www.eclipse.org/org/documents/edl-v10.php.
*/
package org.locationtech.jts.io.geojson;
import java.io.IOException;
import java.io.Reader;
import java.io.StringReader;
import java.util.ArrayList;
import java.util.Collections;
import java.util.List;
import java.util.Map;
import org.json.simple.parser.JSONParser;
import org.locationtech.jts.geom.CoordinateSequence;
import org.locationtech.jts.geom.Geometry;
import org.locationtech.jts.geom.GeometryFactory;
import org.locationtech.jts.geom.LineString;
import org.locationtech.jts.geom.LinearRing;
import org.locationtech.jts.geom.Polygon;
import org.locationtech.jts.geom.PrecisionModel;
import org.locationtech.jts.geom.impl.CoordinateArraySequence;
import org.locationtech.jts.io.ParseException;
/**
* Reads a GeoJSON Geometry from a JSON fragment into a {@link Geometry}.
*
* The current GeoJSON specification is
* https://tools.ietf.org/html/rfc7946.
* An older specification is on the GeoJSON web site:
* http://geojson.org/geojson-spec.html.
*
* The reader does not require a particular orientation for polygon rings.
*
* The reader reads empty or null coordinate arrays as empty geometries.
*
* It is the caller's responsibility to ensure that the supplied
* {@link PrecisionModel} matches the precision of the incoming data. If a lower
* precision for the data is required, a subsequent process must be run on the
* data to reduce its precision.
*
* @author Martin Davis
* @author Paul Howells, Vivid Solutions.
*
*/
public class GeoJsonReader {
private GeometryFactory gf;
/**
* The default constructor uses the SRID from the Geojson CRS and the
* default PrecisionModel
to create a
* GeometryFactory
. If there is no CRS specified then the default
* CRS is a geographic coordinate reference system, using the WGS84 datum, and
* with longitude and latitude units of decimal degrees (SRID = 4326)
*/
public GeoJsonReader() {
// do nothing
}
/**
* This constructor accepts a GeometryFactory
that is used
* to create the output geometries and to override the GeoJson CRS.
*
* @param geometryFactory
* a GeometryFactory
*/
public GeoJsonReader(GeometryFactory geometryFactory) {
this.gf = geometryFactory;
}
/**
* Reads a GeoJson Geometry from a String into a single
* {@link Geometry}.
*
*
* @param json
* The GeoJson String to parse
* @return the resulting JTS Geometry
*
* @throws ParseException
* throws a ParseException if the JSON string cannot be parsed
*/
public Geometry read(String json) throws ParseException {
Geometry result = read(new StringReader(json));
return result;
}
/**
* Reads a GeoJson Geometry from a {@link Reader} into a single
* {@link Geometry}.
*
*
* @param reader
* The input source
* @return The resulting JTS Geometry
*
* @throws ParseException
* throws a ParseException if the JSON string cannot be parsed as a Geometry
*/
@SuppressWarnings("unchecked")
public Geometry read(Reader reader) throws ParseException {
Map geometryMap = null;
JSONParser parser = new JSONParser();
try {
Object obj = parser.parse(reader);
geometryMap = (Map) obj;
} catch (ClassCastException e) {
throw new ParseException("Could not parse Geometry from Json string.");
}catch (org.json.simple.parser.ParseException e) {
throw new ParseException(e);
} catch (IOException e) {
throw new ParseException(e);
}
GeometryFactory geometryFactory = null;
if (this.gf == null) {
geometryFactory = this.getGeometryFactory(geometryMap);
} else {
geometryFactory = this.gf;
}
Geometry result = create(geometryMap, geometryFactory);
return result;
}
private Geometry create(Map geometryMap,
GeometryFactory geometryFactory) throws ParseException {
Geometry result = null;
String type = (String) geometryMap.get(GeoJsonConstants.NAME_TYPE);
if (type == null) {
throw new ParseException(
"Could not parse Geometry from Json string. No 'type' property found.");
} else {
if (GeoJsonConstants.NAME_POINT.equals(type)) {
result = createPoint(geometryMap, geometryFactory);
} else if (GeoJsonConstants.NAME_LINESTRING.equals(type)) {
result = createLineString(geometryMap, geometryFactory);
} else if (GeoJsonConstants.NAME_POLYGON.equals(type)) {
result = createPolygon(geometryMap, geometryFactory);
} else if (GeoJsonConstants.NAME_MULTIPOINT.equals(type)) {
result = createMultiPoint(geometryMap, geometryFactory);
} else if (GeoJsonConstants.NAME_MULTILINESTRING.equals(type)) {
result = createMultiLineString(geometryMap, geometryFactory);
} else if (GeoJsonConstants.NAME_MULTIPOLYGON.equals(type)) {
result = createMultiPolygon(geometryMap, geometryFactory);
} else if (GeoJsonConstants.NAME_GEOMETRYCOLLECTION.equals(type)) {
result = createGeometryCollection(geometryMap, geometryFactory);
} else {
throw new ParseException(
"Could not parse Geometry from GeoJson string. Unsupported 'type':"
+ type);
}
}
return result;
}
private Geometry createGeometryCollection(Map geometryMap,
GeometryFactory geometryFactory) throws ParseException {
Geometry result = null;
try {
@SuppressWarnings("unchecked")
List