public static enum AreaSource.GridScaling extends Enum<AreaSource.GridScaling>
UNIFORM_* variants provide
approximately 1 km (0.01°), 5 km (0.05°), and 10 km (0.1°) source spacing.
SCALED_SM provides fine source spacing of 0.02° from 0 to 20km,
0.05° from 20 to 50 km, 0.1° from 50 to 100 km, 0.2 from 100 to 200 km, 0.5
for 200 to 400 km, and uses a single source at the closest point on the
area border beyond 400 km.
SCALED_LG provides coarser source spacing of 0.1° from 0 to 100
km, 0.2 from 100 to 200 km, 0.5 for 200 to 400 km, and uses a single source
at the closest point on the area border beyond 400 km.
| Enum Constant and Description |
|---|
SCALED_LARGE |
SCALED_SMALL |
UNIFORM_0P005 |
UNIFORM_0P01 |
UNIFORM_0P02 |
UNIFORM_0P05 |
UNIFORM_0P1 |
UNIFORM_0P5 |
| Modifier and Type | Method and Description |
|---|---|
static AreaSource.GridScaling |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static AreaSource.GridScaling[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final AreaSource.GridScaling UNIFORM_0P005
public static final AreaSource.GridScaling UNIFORM_0P01
public static final AreaSource.GridScaling UNIFORM_0P02
public static final AreaSource.GridScaling UNIFORM_0P05
public static final AreaSource.GridScaling UNIFORM_0P1
public static final AreaSource.GridScaling UNIFORM_0P5
public static final AreaSource.GridScaling SCALED_SMALL
public static final AreaSource.GridScaling SCALED_LARGE
public static AreaSource.GridScaling[] values()
for (AreaSource.GridScaling c : AreaSource.GridScaling.values()) System.out.println(c);
public static AreaSource.GridScaling valueOf(String name)
name - the name of the enum constant to be returned.IllegalArgumentException - if this enum type has no constant with the specified nameNullPointerException - if the argument is null