Package org.locationtech.udig.catalog.ui.export

Source Code of org.locationtech.udig.catalog.ui.export.ToMultiPolygonFeatureCollection

/*
*    uDig - User Friendly Desktop Internet GIS client
*    http://udig.refractions.net
*    (C) 2012, Refractions Research Inc.
*
* All rights reserved. This program and the accompanying materials
* are made available under the terms of the Eclipse Public License v1.0
* (http://www.eclipse.org/legal/epl-v10.html), and the Refractions BSD
* License v1.0 (http://udig.refractions.net/files/bsd3-v10.html).
*/
package org.locationtech.udig.catalog.ui.export;

import org.eclipse.core.runtime.IProgressMonitor;
import org.geotools.data.simple.SimpleFeatureCollection;
import org.opengis.feature.simple.SimpleFeatureType;
import org.opengis.feature.type.GeometryDescriptor;
import org.opengis.referencing.operation.MathTransform;

import com.vividsolutions.jts.geom.Geometry;
import com.vividsolutions.jts.geom.GeometryFactory;
import com.vividsolutions.jts.geom.Polygon;

/**
* Ensures that the geometry/multigeometry is a multigeometry because that's all shapefiles accept
* @author jesse
*
*/
class ToMultiPolygonFeatureCollection extends
    AbstractGeometryTransformingFeatureCollection {

    public ToMultiPolygonFeatureCollection(
                SimpleFeatureCollection source, SimpleFeatureType schema,
                GeometryDescriptor typeToUseAsGeometry,
                MathTransform mt, IProgressMonitor monitor ) {
       
        super(source, schema, typeToUseAsGeometry, mt, monitor);
    }

  @Override
  protected Geometry toCollection(Geometry geometry) {
    if (geometry instanceof Polygon) {
      Polygon polygon = (Polygon) geometry;
      GeometryFactory factory = polygon.getFactory();
      return factory.createMultiPolygon(new Polygon[] { polygon });
    }
    return geometry;
  }

}
TOP

Related Classes of org.locationtech.udig.catalog.ui.export.ToMultiPolygonFeatureCollection

TOP
Copyright © 2018 www.massapi.com. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.