[]
Decodes the data from esri data sources. Retrieves both spatial and geodataset data.
public static IEnumerable<EsriRecord> Decode(string filePath)
Type | Name | Description |
---|---|---|
string | filePath | Esri file path. |
Type | Description |
---|---|
IEnumerable<EsriRecord> | The collection of esri data source records. |
Decodes the data from esri data sources. Retrieves both spatial and geodataset data.
public static IEnumerable<EsriRecord> Decode(string filePath, float ratio)
Type | Name | Description |
---|---|---|
string | filePath | Esri file path. |
float | ratio | Simplification ratio |
Type | Description |
---|---|
IEnumerable<EsriRecord> | The collection of esri data source records. |
Overload for Decode(string filePath, float ratio)
public static IEnumerable<EsriRecord> Decode(string filePath, float ratio, Action<Exception> errorAction)
Type | Name | Description |
---|---|---|
string | filePath | Esri file path. |
float | ratio | Simplification ratio |
Action<Exception> | errorAction | Error callback handler function. |
Type | Description |
---|---|
IEnumerable<EsriRecord> |