Uses of Class
org.geotools.parameter.DefaultParameterDescriptor
- 
Packages that use DefaultParameterDescriptor Package Description org.geotools.coverage.grid.io org.geotools.coverageio.gdal Base implementation for Coverage I/O based on GDAL bindings available via the ImageI/O-Ext project.org.geotools.coverageio.jp2k Implementation for JPEG2000 format Coverage I/O leveraging on the JP2K plugins.org.geotools.gce.arcgrid A datasource to manage the ARCGrid ASCII format.org.geotools.gce.geotiff A grid coverage exchange to manage the GeoTIFF Revision 1.0 format.org.geotools.ows.wmts.map org.geotools.parameter Parameter implementation.org.geotools.referencing.operation.transform Basic implementations of math transforms.
- 
- 
Uses of DefaultParameterDescriptor in org.geotools.coverage.grid.ioFields in org.geotools.coverage.grid.io declared as DefaultParameterDescriptor Modifier and Type Field Description static DefaultParameterDescriptor<int[]>AbstractGridFormat. BANDSThisGeneralParameterValuecan be provided to theGridCoverageReaders through theGridCoverageReader#read(GeneralParameterValue[])method to specify the band indices of the input grid coverage that are going to be in the resulting coverage.static DefaultParameterDescriptor<GeoToolsWriteParams>AbstractGridFormat. GEOTOOLS_WRITE_PARAMSThisGeneralParameterValuecan be provided to theGridCoverageWriters through theGridCoverageWriter#write(org.geotools.api.coverage.grid.GridCoverage, GeneralParameterValue[])method in order to control the writing process in terms of compression, tiling, etc.GridGeometry2Dstatic DefaultParameterDescriptor<OverviewPolicy>AbstractGridFormat. OVERVIEW_POLICYThisGeneralParameterValuecan be provided to theGridCoverageReaders through theGridCoverageReader#read(GeneralParameterValue[])method in order to specify the policy a reader should adopt when choosing the right overview during a read operation.static DefaultParameterDescriptor<ProgressListener>AbstractGridFormat. PROGRESS_LISTENERThisGeneralParameterValuecan be provided to theGridCoverageReaders through theGridCoverageReader#write(GeneralParameterValue[])method in order to monitor a writing processstatic DefaultParameterDescriptor<GridGeometry2D>AbstractGridFormat. READ_GRIDGEOMETRY2DThisGeneralParameterValuecan be provided to theGridCoverageReaders through theGridCoverageReader#read(GeneralParameterValue[])method in order to pick up the best matching resolution level and (soon) the best matching area.static DefaultParameterDescriptor<Boolean>AbstractGridFormat. RESCALE_PIXELSThisGeneralParameterValuecan be provided to theGridCoverageReaders through theGridCoverageReader.read(GeneralParameterValue[])method in order to specify the whether eventual value rescaling should be performed, or the original pixel value preservedstatic DefaultParameterDescriptor<String>AbstractGridFormat. SUGGESTED_TILE_SIZEThisGeneralParameterValuecan be provided to theGridCoverageReaders through theGridCoverageReader#read(GeneralParameterValue[])method in order to specify the suggested size of tiles to avoid long time reading occurring with JAI ImageRead on striped images.static DefaultParameterDescriptor<Boolean>AbstractGridFormat. USE_JAI_IMAGEREADThisGeneralParameterValuecan be provided to theGridCoverageReaders through theGridCoverageReader.read(GeneralParameterValue[])method in order to specify the type of image read operation requested: using a JAI ImageRead operation (leveraging on Deferred Execution Model, Tile Caching,...), or the directImageReader's read methods.
- 
Uses of DefaultParameterDescriptor in org.geotools.coverageio.gdalFields in org.geotools.coverageio.gdal declared as DefaultParameterDescriptor Modifier and Type Field Description static DefaultParameterDescriptor<Boolean>BaseGDALGridFormat. USE_MULTITHREADINGThisGeneralParameterValuecan be provided to theGridCoverageReaders through theGridCoverageReader.read(GeneralParameterValue[])method in order to specify to use multithreading when leveraging on a JAI ImageRead operation.
- 
Uses of DefaultParameterDescriptor in org.geotools.coverageio.jp2kFields in org.geotools.coverageio.jp2k declared as DefaultParameterDescriptor Modifier and Type Field Description static DefaultParameterDescriptor<Boolean>JP2KFormat. USE_MULTITHREADINGThisGeneralParameterValuecan be provided to theGridCoverageReaders through theGridCoverageReader.read(GeneralParameterValue[])method in order to specify to use multithreading when leveraging on a JAI ImageRead operation.
- 
Uses of DefaultParameterDescriptor in org.geotools.gce.arcgridFields in org.geotools.gce.arcgrid declared as DefaultParameterDescriptor Modifier and Type Field Description static DefaultParameterDescriptor<Boolean>ArcGridFormat. FORCE_CELLSIZEIndicates whether we ask the plugin to resample the coverage to have dx==dystatic DefaultParameterDescriptor<Boolean>ArcGridFormat. GRASSIndicates whether the arcgrid data must be written in GRASS format
- 
Uses of DefaultParameterDescriptor in org.geotools.gce.geotiffFields in org.geotools.gce.geotiff declared as DefaultParameterDescriptor Modifier and Type Field Description static DefaultParameterDescriptor<Boolean>GeoTiffFormat. RETAIN_AXES_ORDERThisGeneralParameterValuecan be provided to theGeoTiffWriters in order to force the writer to retain the axes order.static DefaultParameterDescriptor<Boolean>GeoTiffFormat. WRITE_NODATAThisGeneralParameterValuecan be provided to theGeoTiffWriters to specify whether NoData should be written when available.static DefaultParameterDescriptor<Boolean>GeoTiffFormat. WRITE_TFWThisGeneralParameterValuecan be provided to theGeoTiffWriters in order to force the writer to write a tfw file.
- 
Uses of DefaultParameterDescriptor in org.geotools.ows.wmts.mapFields in org.geotools.ows.wmts.map declared as DefaultParameterDescriptor Modifier and Type Field Description static DefaultParameterDescriptor<CoordinateReferenceSystem>WMTSMapLayer. SOURCE_CRS
- 
Uses of DefaultParameterDescriptor in org.geotools.parameterMethods in org.geotools.parameter that return DefaultParameterDescriptor Modifier and Type Method Description static DefaultParameterDescriptor<Double>DefaultParameterDescriptor. create(String name, double defaultValue, double minimum, double maximum, Unit<?> unit)Constructs a descriptor for a mandatory parameter in a range of floating point values.static DefaultParameterDescriptor<Integer>DefaultParameterDescriptor. create(String name, int defaultValue, int minimum, int maximum)Constructs a descriptor for a mandatory parameter in a range of integer values.static <T> DefaultParameterDescriptor<T>DefaultParameterDescriptor. create(String name, CharSequence remarks, Class<T> valueClass, T defaultValue, boolean required)Constructs a descriptor from a name and a default value.static DefaultParameterDescriptor<Double>DefaultParameterDescriptor. create(Map<String,?> properties, double defaultValue, double minimum, double maximum, Unit<?> unit, boolean required)Constructs a descriptor for a parameter in a range of floating point values.static DefaultParameterDescriptor<Integer>DefaultParameterDescriptor. create(Map<String,?> properties, int defaultValue, int minimum, int maximum, boolean required)Constructs a descriptor for a parameter in a range of integer values.
- 
Uses of DefaultParameterDescriptor in org.geotools.referencing.operation.transformFields in org.geotools.referencing.operation.transform declared as DefaultParameterDescriptor Modifier and Type Field Description static DefaultParameterDescriptor<URI>NTv2Transform.Provider. FILEThe operation parameter descriptor for the "Latitude and longitude difference file" parameter value.
 
-