Class EncEnvironmentSettings
- java.lang.Object
-
- com.esri.arcgisruntime.hydrography.EncEnvironmentSettings
-
public final class EncEnvironmentSettings extends java.lang.Object
Represents settings for ENC (Electronic Navigational Chart) that are applied to all instances ofEncCell
andEncLayer
.A valid resource path
setResourcePath(String)
and a valid SENC (System Electronic Navigational Chart) data pathsetSencDataPath(String)
are necessary to loadEncCell
andEncLayer
.- Since:
- 100.2.0
-
-
Nested Class Summary
Nested Classes Modifier and Type Class Description static class
EncEnvironmentSettings.DisplaySettings
Represents various settings used to control display of features in allEncLayers
.
-
Constructor Summary
Constructors Constructor Description EncEnvironmentSettings()
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static EncEnvironmentSettings.DisplaySettings
getDisplaySettings()
Gets the ENC display settings, which allows selection of mariner, viewing group, and text group visibility settings.static java.lang.String
getResourcePath()
Gets the path to the directory containing the ENC resource files.static java.lang.String
getSencDataPath()
Gets the path to the directory where the SENC files are written.static void
setResourcePath(java.lang.String path)
Sets the path to the directory containing the ENC resource files.static void
setSencDataPath(java.lang.String path)
Sets the path to the directory where the SENC (System Electronic Navigational Chart) files will be written.
-
-
-
Method Detail
-
getDisplaySettings
public static EncEnvironmentSettings.DisplaySettings getDisplaySettings()
Gets the ENC display settings, which allows selection of mariner, viewing group, and text group visibility settings.- Returns:
- the ENC display settings
- Since:
- 100.2.0
-
setResourcePath
public static void setResourcePath(java.lang.String path)
Sets the path to the directory containing the ENC resource files.
-
getResourcePath
public static java.lang.String getResourcePath()
Gets the path to the directory containing the ENC resource files.- Returns:
- the path to the directory containing the ENC resource files
- Since:
- 100.2.0
-
setSencDataPath
public static void setSencDataPath(java.lang.String path)
Sets the path to the directory where the SENC (System Electronic Navigational Chart) files will be written.SENC data will automatically get created the first time a
EncCell
is loaded. It is up to the developer to manage this data between sessions - if a map is reloaded between sessions, make sure the SENC data path is properly set to reuse the already generated SENC data.ENC data is converted into a SENC format for optimal chart display.
Subsequent loads of an ENC cell will read from the SENC files directly.
-
getSencDataPath
public static java.lang.String getSencDataPath()
Gets the path to the directory where the SENC files are written.- Returns:
- the path to the directory where the SENC files are written
- Since:
- 100.2.0
-
-