public static enum LasFileReader.CoordinateReferenceSystemOption extends Enum<LasFileReader.CoordinateReferenceSystemOption>
| Enum Constant and Description |
|---|
GeoTIFF
The LAS file uses GeoTIFF tags to identify CRS
|
WKT
The LAS file used Well-Known-Text to identify CRS
|
| Modifier and Type | Method and Description |
|---|---|
static LasFileReader.CoordinateReferenceSystemOption |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static LasFileReader.CoordinateReferenceSystemOption[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final LasFileReader.CoordinateReferenceSystemOption GeoTIFF
public static final LasFileReader.CoordinateReferenceSystemOption WKT
public static LasFileReader.CoordinateReferenceSystemOption[] values()
for (LasFileReader.CoordinateReferenceSystemOption c : LasFileReader.CoordinateReferenceSystemOption.values()) System.out.println(c);
public static LasFileReader.CoordinateReferenceSystemOption 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 nullCopyright © 2021. All rights reserved.