com.vividsolutions.jts.io.geojson.GeoJsonReader Maven / Gradle / Ivy
/*
* The JTS Topology Suite is a collection of Java classes that
* implement the fundamental operations required to validate a given
* geo-spatial data set to a known topological specification.
*
* Copyright (C) 2001 Vivid Solutions
*
* This library is free software; you can redistribute it and/or
* modify it under the terms of the GNU Lesser General Public
* License as published by the Free Software Foundation; either
* version 2.1 of the License, or (at your option) any later version.
*
* This library is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
* Lesser General Public License for more details.
*
* You should have received a copy of the GNU Lesser General Public
* License along with this library; if not, write to the Free Software
* Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
*
* For more information, contact:
*
* Vivid Solutions
* Suite #1A
* 2328 Government Street
* Victoria BC V8T 5G5
* Canada
*
* (250)385-6040
* www.vividsolutions.com
*/
package com.vividsolutions.jts.io.geojson;
import java.io.IOException;
import java.io.Reader;
import java.io.StringReader;
import java.util.ArrayList;
import java.util.List;
import java.util.Map;
import org.json.simple.parser.JSONParser;
import com.vividsolutions.jts.geom.CoordinateSequence;
import com.vividsolutions.jts.geom.Geometry;
import com.vividsolutions.jts.geom.GeometryFactory;
import com.vividsolutions.jts.geom.LineString;
import com.vividsolutions.jts.geom.LinearRing;
import com.vividsolutions.jts.geom.Polygon;
import com.vividsolutions.jts.geom.PrecisionModel;
import com.vividsolutions.jts.geom.impl.CoordinateArraySequence;
import com.vividsolutions.jts.io.ParseException;
/**
* Reads a GeoJson Geometry from a JSON fragment into a {@link Geometry}.
*
* A specification of the GeoJson format can be found at the GeoJson web site:
* http://geojson.org/geojson-spec.html.
*
* 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
*/
public Geometry read(Reader reader) throws ParseException {
Geometry result = null;
JSONParser parser = new JSONParser();
try {
@SuppressWarnings("unchecked")
Map geometryMap = (Map) parser
.parse(reader);
GeometryFactory geometryFactory = null;
if (this.gf == null) {
geometryFactory = this.getGeometryFactory(geometryMap);
} else {
geometryFactory = this.gf;
}
result = create(geometryMap, geometryFactory);
} catch (org.json.simple.parser.ParseException e) {
throw new ParseException(e);
} catch (IOException e) {
throw new ParseException(e);
}
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