Package org.geotools.parameter

Examples of org.geotools.parameter.DefaultParameterDescriptorGroup


        mInfo.put("vendor", "Geotools");
        mInfo.put("version", "1.1");
        mInfo.put("docURL", "http://www.remotesensing.org/geotiff/spec/geotiffhome.html");

        // reading parameters
        readParameters = new ParameterGroup( new DefaultParameterDescriptorGroup(mInfo,
                        new GeneralParameterDescriptor[] {
                            READ_GRIDGEOMETRY2D,
                            INPUT_TRANSPARENT_COLOR,
                            USE_JAI_IMAGEREAD,
                            SUGGESTED_TILE_SIZE,
                            BACKGROUND_VALUES
                            }));

        // writing parameters
        writeParameters = new ParameterGroup(
                new DefaultParameterDescriptorGroup(mInfo, new GeneralParameterDescriptor[] {
                        AbstractGridFormat.GEOTOOLS_WRITE_PARAMS }));

    }
View Full Code Here


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

        // reading parameters
        readParameters = new ParameterGroup(
                new DefaultParameterDescriptorGroup(mInfo,
                        new GeneralParameterDescriptor[] { READ_GRIDGEOMETRY2D,
                                FILTER, SUGGESTED_TILE_SIZE, USE_JAI_IMAGEREAD,
                                BACKGROUND_COLOR }));

        // writing parameters
View Full Code Here

        "0.8.0");
    mInfo = info;

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

        // writing parameters
        this.writeParameters = null;

        // reading parameters
        this.readParameters = new ParameterGroup(
                new DefaultParameterDescriptorGroup(this.mInfo,
                        new GeneralParameterDescriptor[] { READ_GRIDGEOMETRY2D,
                                INPUT_TRANSPARENT_COLOR, CUSTOM_DIMENSION }));
    }
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.