Changeset 35125 in osm for applications/editors/josm/plugins/opendata
- Timestamp:
- 2019-09-26T13:46:59+02:00 (5 years ago)
- Location:
- applications/editors/josm/plugins/opendata/src/org/openstreetmap/josm/plugins/opendata/core/io/geographic
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
applications/editors/josm/plugins/opendata/src/org/openstreetmap/josm/plugins/opendata/core/io/geographic/GeographicReader.java
r34972 r35125 25 25 import javax.swing.JOptionPane; 26 26 27 import org.geotools.factory.Hints;28 27 import org.geotools.geometry.jts.JTS; 29 28 import org.geotools.metadata.iso.citation.Citations; … … 34 33 import org.geotools.referencing.crs.AbstractDerivedCRS; 35 34 import org.geotools.referencing.crs.AbstractSingleCRS; 35 import org.geotools.util.factory.Hints; 36 import org.locationtech.jts.geom.LineString; 37 import org.locationtech.jts.geom.Point; 36 38 import org.opengis.geometry.MismatchedDimensionException; 37 39 import org.opengis.referencing.FactoryException; … … 68 70 import org.openstreetmap.josm.tools.Utils; 69 71 70 import com.vividsolutions.jts.geom.LineString;71 import com.vividsolutions.jts.geom.Point;72 73 72 /** 74 73 * Superclass of geographic format readers (currently GML and SHP). -
applications/editors/josm/plugins/opendata/src/org/openstreetmap/josm/plugins/opendata/core/io/geographic/GmlReader.java
r34899 r35125 14 14 import javax.xml.stream.XMLStreamReader; 15 15 16 import org.locationtech.jts.geom.Coordinate; 17 import org.locationtech.jts.geom.GeometryFactory; 18 import org.locationtech.jts.geom.Point; 16 19 import org.opengis.geometry.MismatchedDimensionException; 17 20 import org.opengis.referencing.FactoryException; … … 32 35 import org.openstreetmap.josm.tools.Logging; 33 36 import org.openstreetmap.josm.tools.UserCancelException; 34 35 import com.vividsolutions.jts.geom.Coordinate;36 import com.vividsolutions.jts.geom.GeometryFactory;37 import com.vividsolutions.jts.geom.Point;38 37 39 38 /** -
applications/editors/josm/plugins/opendata/src/org/openstreetmap/josm/plugins/opendata/core/io/geographic/ShpReader.java
r34997 r35125 32 32 import org.geotools.feature.FeatureCollection; 33 33 import org.geotools.feature.FeatureIterator; 34 import org.locationtech.jts.geom.Geometry; 35 import org.locationtech.jts.geom.GeometryCollection; 36 import org.locationtech.jts.geom.LineString; 37 import org.locationtech.jts.geom.Point; 38 import org.locationtech.jts.geom.Polygon; 34 39 import org.opengis.feature.Feature; 35 40 import org.opengis.feature.GeometryAttribute; … … 52 57 import org.openstreetmap.josm.tools.Logging; 53 58 import org.openstreetmap.josm.tools.UserCancelException; 54 55 import com.vividsolutions.jts.geom.Geometry;56 import com.vividsolutions.jts.geom.GeometryCollection;57 import com.vividsolutions.jts.geom.LineString;58 import com.vividsolutions.jts.geom.Point;59 import com.vividsolutions.jts.geom.Polygon;60 59 61 60 /**
Note:
See TracChangeset
for help on using the changeset viewer.