Package org.geotools.api.coverage.grid
Interface Format
-
- All Known Implementing Classes:
AbstractGridFormat
,AIGFormat
,ArcGridFormat
,BaseGDALGridFormat
,DTEDFormat
,ECWFormat
,EnviHdrFormat
,ErdasImgFormat
,EsriHdrFormat
,GeoPackageFormat
,GeoTiffFormat
,GrassCoverageFormat
,GRIBFormat
,IDRISIFormat
,ImageMosaicFormat
,ImagePyramidFormat
,JP2ECWFormat
,JP2KFormat
,JP2KFormat
,JP2MrSIDFormat
,MBTilesFormat
,MrSIDFormat
,NetCDFFormat
,NITFFormat
,PGRasterFormat
,RPFTOCFormat
,SRPFormat
,TPKFormat
,UnknownFormat
,VRTFormat
,VSIFormat
,WorldImageFormat
public interface Format
A discovery mechanism to determine the formats supported by aGridCoverageExchange
implementation. AGridCoverageExchange
implementation can support a number of file format or resources.- Since:
- GeoAPI 2.0
- Author:
- Martin Desruisseaux (IRD)
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description String
getDescription()
Description of the file format.String
getDocURL()
Documentation URL for the format.String
getName()
Name of the file format.ParameterValueGroup
getReadParameters()
Retrieve the parameter information for aread
operation.String
getVendor()
Vendor or agency for the format.String
getVersion()
Version number of the format.ParameterValueGroup
getWriteParameters()
Retrieve the parameter information for awrite
operation.
-
-
-
Method Detail
-
getName
String getName()
Name of the file format.
-
getDescription
String getDescription()
Description of the file format. If no description, the value will benull
.
-
getVendor
String getVendor()
Vendor or agency for the format.
-
getDocURL
String getDocURL()
Documentation URL for the format.
-
getVersion
String getVersion()
Version number of the format.
-
getReadParameters
@UML(identifier="getParameterInfo, numParameters", obligation=MANDATORY, specification=OGC_01004) ParameterValueGroup getReadParameters()
Retrieve the parameter information for aread
operation.
-
getWriteParameters
@UML(identifier="getParameterInfo, numParameters", obligation=MANDATORY, specification=OGC_01004) ParameterValueGroup getWriteParameters()
Retrieve the parameter information for awrite
operation.
-
-