DirectoryDataSet Class
A dataset that monitors geodata files in a directory, and dynamically adds and removes child datasets to read them.
NuGet/Assembly: Carmenta.Engine.5.16.2.nupkg (in the CEDataSets assembly)
Syntax
public class DirectoryDataSet : DataSetSet
Remarks
A DirectoryDataSet creates a background thread that regularly scans the specified directory and its subdirectories for data files. For each supported file that it finds, it creates a new dataset and adds it to its list of child datasets.
If a GeoPackage file is found, a separate child dataset will be created for each readable table in the GeoPackage.
The purpose of this is to make it possible to add or remove geodata files while an application is running, and apply those changes to map views shown by the application, without requiring a restart of the application or reload of the map views. The dataset will fire a DataSetChanged event when a change is detected, all the application needs to to is listen to this event, flush relevant layers and schedule a map update, see example below.
Limitations
Only a limited number of data formats are supported by this dataset:
GeoTIFF
JPEG 2000
GeoPackage
MBTiles files, both vector and raster
There is no way to set properties controlling the generated datasets. There will for instance be no way to generate index files, raster caches etc on disk. Therefore it is important that for instance TIFF files added to the directory have built-in overviews, otherwise performance might be poor. All added files must be properly georeferenced.
It is not possible to control the order of the features returned by the generated datasets. However, some ordering of the features returned from the dataset is guaranteed. During a query, each child dataset will return its features in turn. The order of the child datasets is determined by their nominal highest resolution, i.e. their cell width and cell height expressed in meters; highest resolution first. The order of child datasets with the same raster resolution and the order of vector datasets are unspecified.
Error handling
Data files in the monitored folder will be opened in a way that allows a user to delete them, even if Carmenta Engine has open handles to them. But deleting an active file like this is likely to cause different kinds of exceptions in the dataset reading the file. These exception will be visible in the Carmenta Engine log, but the DirectoryDataSet should be prepared for this and handle such errors, typically by removing the dataset from the active list. The application should continue to run without interruption.
Added or deleted files should be handled without causing problems for the application. However, if an existing file is modified in place, there is a small risk for other types of exceptions that can't be properly handled. Therefore, never modify an existing data file; remove the old and create a new file with a new name instead.
Also, copying a large file into the data directory may take some time. Until the copying is complete, monitoring applications will see a half-written file, and are likely to generate errors when trying to read it. These errors should be handled automatically, and on a following scan when the file is complete, it will be added to the dataset. But the errors will show in the Carmenta Engine log, and will also fire a lot of unnecessary Runtime.StatusChanged events. Therefore it is recommended to first copy large data files into a temporary directory on the same disk, and then just move the files into the data directory.
Example
// Reference to the view
private View view;
// Add a handler for the DataSetChanged event
public void AddDataSetChangedHandler(View v, DirectoryDataSet ds)
{
ds.DataSetChanged += DataSetChanged;
view = v;
}
// Handler called whenever the dataset has detected changed data files
private void DataSetChanged(DirectoryDataSet sender, System.EventArgs e)
{
// Flush layers containing the DirectoryDataSet
view.FlushLayersContainingObject(sender);
// Schedule an update
view.update();
}
Inheritance Hierarchy
System.Object (not available in C#)
EngineObject
ResourceObject
DataSet
DataSetSet
DirectoryDataSet
Platforms
Windows, Linux, Android
DirectoryDataSet Members
The DirectoryDataSet type has the following members.
Constructors
Name | Description |
---|---|
DirectoryDataSet | Initializes a new instance of the DirectoryDataSet class with the given directory. |
Properties
Name | Description |
---|---|
Crs | Gets or sets the coordinate reference system of the DirectoryDataSet. Inherited from DataSet |
DataSets | Gets a collection that contains all DataSet elements in the DirectoryDataSet. Inherited from DataSetSet |
Description | Gets or sets a short description of the dataset. Inherited from DataSet |
DisplayName | Gets or sets a display name for the dataset. Inherited from DataSet |
Id | Gets a unique identifier for this dataset instance. Inherited from DataSet |
IsDisposed | Gets a value that tells whether the current DirectoryDataSet has been disposed. Inherited from EngineObject |
IsoMetadataDocument | Gets or sets the path to an ISO 19139 metadata document for the dataset. Inherited from DataSet |
MonitorInterval | Gets or sets an interval specifying how often the dataset will check the directory for changed files. |
Name | Gets or sets the name of the DirectoryDataSet. Inherited from ResourceObject |
NativeHandle | Gets the native Carmenta Engine kernel object the current DirectoryDataSet represents. Inherited from EngineObject |
Path | Gets the path to the directory to monitor. |
SuppressInitializationErrors | Gets or sets a flag indicating how errors during dataset initialization are handled. Inherited from DataSet |
IUserProperties.UserProperties | Gets the AttributeSet that contains the user properties. Inherited from IUserProperties |
Methods
Name | Description |
---|---|
Clone | Creates a copy of an object. Inherited from EngineObject |
Dispose | Releases the reference to the native Carmenta Engine kernel instance the EngineObject represents. Inherited from EngineObject |
Equals | Determines whether this instance is equal to another. Inherited from EngineObject |
FindChildObject | Overloaded. Finds the child object with the specified name. Inherited from DataSet |
FlushCache | Frees any information the dataset may have cached, including all cached features. Inherited from DataSet |
GetChildObjects | Overloaded. Gets the child objects of the current object. Inherited from DataSet |
GetDataCoverage | Gets coverage information for this dataset in a given area. Inherited from DataSet |
Looks up an existing dataset instance from a dataset identity. Inherited from DataSet | |
GetDataSetInfo | Returns a dataset info that describes the contents of this dataset. Inherited from DataSet |
GetDataSetInfoAsync | Makes an asynchronous call to GetDataSetInfo. Inherited from DataSet |
GetFeature | Gets the feature with the specified identity. Inherited from DataSet |
GetFeatures | Overloaded. Gets features from the dataset. Inherited from DataSet |
GetFloatValueAt | Overloaded. Gets the float raster value from a cell at the specified position. Inherited from DataSet |
GetFloatValuesAt | Overloaded. Gets a number of float raster values. Inherited from DataSet |
GetLocalizedDescription | Gets a localized version of the dataset description in a specific language. Inherited from DataSet |
GetLocalizedDisplayName | Gets a localized version of the dataset display name in a specific language. Inherited from DataSet |
GetLocalizedIsoMetadataDocument | Gets the path to an ISO 19139 metadata document for a specific language. Inherited from DataSet |
GetNormalizedFloatValueAt | Overloaded. Gets the raster value from a cell at the specified position, normalized by Scale and Offset. Inherited from DataSet |
GetNormalizedFloatValuesAt | Overloaded. Gets a number of raster values, normalized by Scale and Offset. Inherited from DataSet |
GetValueAt | Overloaded. Gets the integer value from a raster cell at the specified position. Inherited from DataSet |
GetValuesAt | Overloaded. Gets a number of raster values. Inherited from DataSet |
HasLocalizedDescription | Checks if a localized version of the dataset description is available in a specific language. Inherited from DataSet |
HasLocalizedDisplayName | Checks if a localized version of the dataset display name is available in a specific language. Inherited from DataSet |
HasLocalizedIsoMetadataDocument | Checks if an ISO 19139 metadata document is available for a specific language. Inherited from DataSet |
HighestRasterValue | Finds the highest raster value inside the given polygon. Inherited from DataSet |
Initialize | Initializes the dataset. Inherited from DataSet |
SetLocalizedDescription | Sets a dataset description in a specific language. Inherited from DataSet |
SetLocalizedDisplayName | Sets a dataset display name in a specific language. Inherited from DataSet |
SetLocalizedIsoMetadataDocument | Sets the path to an ISO 19139 metadata document for the dataset, for a specific language. Inherited from DataSet |
TryGetFloatValueAt | Overloaded. Gets the float value from a raster cell at the specified position. Inherited from DataSet |
TryGetNormalizedFloatValueAt | Overloaded. Gets the float value from a raster cell at the specified position, normalized by Scale and Offset. Inherited from DataSet |
TryGetValueAt | Overloaded. Gets the integer value from a raster cell at the specified position. Inherited from DataSet |
Events
Name | Description |
---|---|
DataSetChanged | Occurs when dataset has detected changed and updated its list of child datasets. |