Package org.geotools.gce.imagemosaic
Class ImageMosaicFormatFactory
- Object
-
- ImageMosaicFormatFactory
-
- All Implemented Interfaces:
GridFormatFactorySpi
,Factory
,OptionalFactory
public final class ImageMosaicFormatFactory extends Object implements GridFormatFactorySpi
Implementation of the GridCoverageFormat service provider interface for mosaic of georeferenced images.- Since:
- 2.3
- Author:
- Simone Giannecchini, GeoSolutions S.A.S.
-
-
Constructor Summary
Constructors Constructor Description ImageMosaicFormatFactory()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description AbstractGridFormat
createFormat()
Construct a live grid format.Map<RenderingHints.Key,?>
getImplementationHints()
Returns the implementation hints.boolean
isAvailable()
Tells me if this plugin will work on not given the actual installation.
-
-
-
Method Detail
-
createFormat
public AbstractGridFormat createFormat()
Description copied from interface:GridFormatFactorySpi
Construct a live grid format.- Specified by:
createFormat
in interfaceGridFormatFactorySpi
-
getImplementationHints
public Map<RenderingHints.Key,?> getImplementationHints()
Returns the implementation hints. The default implementation returns an empty map.- Specified by:
getImplementationHints
in interfaceFactory
- Returns:
- An empty map.
-
isAvailable
public boolean isAvailable()
Tells me if this plugin will work on not given the actual installation.Dependecies are mostly from JAI and ImageIO so if they are installed you should not have many problems.
- Specified by:
isAvailable
in interfaceOptionalFactory
- Returns:
- False if something's missing, true otherwise.
-
-