AlbersEqualArea.Provider instead.@Deprecated public class AlbersEqualAreaConicDescriptor extends Object implements MapTransformDescriptor
| Modifier and Type | Class and Description |
|---|---|
class |
AlbersEqualAreaConicDescriptor.AEAC
Deprecated.
since BEAM 4.7, use geotools
MapProjection instead. |
| Modifier and Type | Field and Description |
|---|---|
static String |
MAP_UNIT
Deprecated.
The map unit of this map descriptor
|
static String |
NAME
Deprecated.
The name of this map descriptor
|
static double[] |
PARAMETER_DEFAULT_VALUES
Deprecated.
The default parameters of this map descriptor
NOTE: These default values are specific to the SIBERIA-II project and
should be altered accordingly for other areas of interest.
|
static String[] |
PARAMETER_LABELS
Deprecated.
|
static String[] |
PARAMETER_NAMES
Deprecated.
|
static String[] |
PARAMETER_UNITS
Deprecated.
|
static String |
TYPE_ID
Deprecated.
The type ID of this map descriptor
|
| Constructor and Description |
|---|
AlbersEqualAreaConicDescriptor()
Deprecated.
|
| Modifier and Type | Method and Description |
|---|---|
MapTransform |
createTransform(double[] parameterValues)
Deprecated.
Creates an instance of the map transform for the given parameter values.
|
String |
getMapUnit()
Deprecated.
Gets the unit of the map.
|
String |
getName()
Deprecated.
Gets a descriptive name for this map transformation descriptor.
|
double[] |
getParameterDefaultValues()
Deprecated.
Gets the default parameter values for this map transform.
|
Parameter[] |
getParameters()
Deprecated.
Gets the list of parameters required to create an instance of the map transform.
|
MapTransformUI |
getTransformUI(MapTransform transform)
Deprecated.
Gets a user interface for editing the transformation properties of a map projection.
|
String |
getTypeID()
Deprecated.
Gets the unique type identifier for the map transformation, e.g.
|
boolean |
hasTransformUI()
Deprecated.
Tests if a user interface is available.
|
void |
registerProjections()
Deprecated.
This method is called within the
method after an
instance of this MapTransformDescriptor has been successfully registered. |
public static final String TYPE_ID
public static final String NAME
public static final String MAP_UNIT
public static final String[] PARAMETER_NAMES
public static final double[] PARAMETER_DEFAULT_VALUES
public static final String[] PARAMETER_LABELS
public static final String[] PARAMETER_UNITS
public AlbersEqualAreaConicDescriptor()
public void registerProjections()
MapProjectionRegistry.registerDescriptor(org.esa.beam.framework.dataop.maptransf.MapTransformDescriptor) method after an
instance of this MapTransformDescriptor has been successfully registered. The method can and should
be used to register projections that are based on the type of MapTransform described by this
MapTransformDescriptor. Registering projection instances is done using the using the MapProjectionRegistry.registerProjection(org.esa.beam.framework.dataop.maptransf.MapProjection) method.
A typical implementation of this method would be:
public void registerProjections() {
MapProjectionRegistry.registerProjection(new MapProjection("my-projection-name-1", new
MyMapTransform(param_1)));
MapProjectionRegistry.registerProjection(new MapProjection("my-projection-name-2", new
MyMapTransform(param_2)));
MapProjectionRegistry.registerProjection(new MapProjection("my-projection-name-3", new
MyMapTransform(param_3)));
...
}
registerProjections in interface MapTransformDescriptorpublic String getTypeID()
getTypeID in interface MapTransformDescriptorpublic String getName()
getName in interface MapTransformDescriptorNAMEpublic String getMapUnit()
getMapUnit in interface MapTransformDescriptorpublic Parameter[] getParameters()
getParameters in interface MapTransformDescriptorpublic double[] getParameterDefaultValues()
getParameterDefaultValues in interface MapTransformDescriptorpublic boolean hasTransformUI()
true because a user interface is available for this
descriptor.hasTransformUI in interface MapTransformDescriptortruepublic MapTransformUI getTransformUI(MapTransform transform)
null because a user interface is available for this descriptor.getTransformUI in interface MapTransformDescriptortransform - the transformation which provides the default properties for the UI.public MapTransform createTransform(double[] parameterValues)
createTransform in interface MapTransformDescriptorparameterValues - the parameter values. If null, a map transform with default parameter values is createdCopyright © 2002–2014 Brockmann Consult GmbH. All rights reserved.