Package org.geotools.parameter

Examples of org.geotools.parameter.DefaultParameterDescriptorGroup


        // 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


        // 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

        // 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

    mInfo.put("docURL", "http://edcdaac.usgs.gov/gtopo30/gtopo30.asp");
    mInfo.put("version", "1.0");

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

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

                if (formula != null) {
                    properties.put(OperationMethod.FORMULA_KEY, formula);
                }
               
                method = new DefaultOperationMethod(properties, sourceDimensions, targetDimensions,
                         new DefaultParameterDescriptorGroup(properties, descriptors));
                returnValue = ensureSingleton(method, returnValue, code);
            }
        } catch (SQLException exception) {
            throw databaseFailure(OperationMethod.class, code, exception);
        }
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,
                TIME,
                ELEVATION,
                FILTER,
View Full Code Here

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

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

    // reading parameters
    writeParameters = null;
View Full Code Here

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

        // writing parameters
        writeParameters = null;
        readParameters = new ParameterGroup(new DefaultParameterDescriptorGroup(mInfo,
                new GeneralParameterDescriptor[]{
            READ_GRIDGEOMETRY2D,
            INPUT_TRANSPARENT_COLOR,
                USE_JAI_IMAGEREAD,
                USE_MULTITHREADING,
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

        mInfo.put("name", "grass");
        mInfo.put("description", "Grass Coverage Format");
        mInfo.put("vendor", "Geotools");

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

        // reading parameters
        writeParameters = new ParameterGroup(new DefaultParameterDescriptorGroup(mInfo,
                new GeneralParameterDescriptor[]{GEOTOOLS_WRITE_PARAMS}));
    }
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.