Package org.geotools.parameter

Examples of org.geotools.parameter.DefaultParameterDescriptorGroup


        info.put("vendor", "Geotools ");
        info.put("docURL", "");
        info.put("version", GeoTools.getVersion().toString());
        mInfo = info;

        readParameters = new ParameterGroup(new DefaultParameterDescriptorGroup(mInfo,
                new GeneralParameterDescriptor[] { READ_GRIDGEOMETRY2D, OVERVIEW_POLICY }));
    }
View Full Code Here


        info.put("docURL", "");
        info.put("version", "1.0");
        mInfo = info;

        // reading parameters
        readParameters = new ParameterGroup(new DefaultParameterDescriptorGroup(mInfo,
                new GeneralParameterDescriptor[]{
                        READ_GRIDGEOMETRY2D /*,
                       INPUT_TRANSPARENT_COLOR,
                OUTPUT_TRANSPARENT_COLOR,
                USE_JAI_IMAGEREAD,
View Full Code Here

        // writing parameters
        writeParameters = null;

        // reading parameters
        readParameters = new ParameterGroup(
                new DefaultParameterDescriptorGroup(mInfo,
                        new GeneralParameterDescriptor[] { READ_GRIDGEOMETRY2D}));
    }
View Full Code Here

     * @return The descriptor for the given identifiers.
     */
    protected static ParameterDescriptorGroup createDescriptorGroup(
            final ReferenceIdentifier[] identifiers, final GeneralParameterDescriptor[] parameters)
    {
        return new DefaultParameterDescriptorGroup(toMap(identifiers), parameters);
    }
View Full Code Here

        info.put("docURL", "");
        info.put("version", "1.0");
        mInfo = info;

        // reading parameters
        readParameters = new ParameterGroup(new DefaultParameterDescriptorGroup(mInfo,
                new GeneralParameterDescriptor[]{
                        READ_GRIDGEOMETRY2D /*,
                       INPUT_TRANSPARENT_COLOR,
                OUTPUT_TRANSPARENT_COLOR,
                USE_JAI_IMAGEREAD,
View Full Code Here

    /**
     * Constructs an {@code "Interpolate"} operation.
     */
    public Interpolate() {
        super(new DefaultParameterDescriptorGroup(Citations.OGC, "Interpolate",
              new ParameterDescriptor[] {
                    SOURCE_0,
                    TYPE
        }));
    }
View Full Code Here

    /**
     * Constructs a default {@code "SelectSampleDimension"} operation.
     */
    public SelectSampleDimension() {
        super(new DefaultParameterDescriptorGroup("SelectSampleDimension",
              new ParameterDescriptor[] {
                    SOURCE_0,
                    SAMPLE_DIMENSIONS,
                    VISIBLE_SAMPLE_DIMENSION
        }));
View Full Code Here

    /**
     * Constructs a default {@code "Crop"} operation.
     */
  public Crop() {
    super(new DefaultParameterDescriptorGroup(Citations.GEOTOOLS,
        "CoverageCrop", new ParameterDescriptor[] { SOURCE_0,
            CROP_ENVELOPE, CROP_ROI,
            ROI_OPTIMISATION_TOLERANCE,
            FORCE_MOSAIC}));

View Full Code Here

            parameters[i] = new ParamDescriptor( params[i] );
        }
        Map properties = new HashMap();
        properties.put( "name", getDisplayName() );
        properties.put( "remarks", getDescription() );
        return new DefaultParameterDescriptorGroup(properties, parameters);
    }
View Full Code Here

        // writing parameters
        writeParameters = null;

        // reading parameters
        readParameters = new ParameterGroup(new DefaultParameterDescriptorGroup(mInfo,
                    new GeneralParameterDescriptor[] {
                        READ_GRIDGEOMETRY2D, USE_JAI_IMAGEREAD, USE_MULTITHREADING,
                        SUGGESTED_TILE_SIZE
                    }));
    }
View Full Code Here

TOP

Related Classes of org.geotools.parameter.DefaultParameterDescriptorGroup

Copyright © 2018 www.massapicom. 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.