VpfDataSet Class
A dataset that reads VPF (Vector Product Format) data, specified by the American military standard MIL-STD-2407
NuGet/Assembly: Carmenta.Engine.5.16.2.nupkg (in the CEDataSets assembly)
Syntax
public class VpfDataSet : MultiFileDataSet,
IReadAttributes,
ISearchable
Remarks
VPF, or Vector Product Format, is an American military standard (MIL-STD-2407) for geographical vector information. This format is used for instance in the database Digital Chart of the World (DCW) and its successor Vector smart MAP level 0 (VMAP0).
This dataset gives direct access to a VPF database on disk. It implements version 1.0 of the format and reads point, line and polygon features.
A VPF database has a hierarchical structure and is composed of a set of libraries, each of which is intended for a specific scale and geographic area (possibly the whole world). For example, the VMAP0 database has four libraries intended for the same scale but different continents, while the World Vector Shoreline database has six libraries for different scales but covering the whole world. A VPF library is composed of a set of coverages, each of which is a set of similar features classes. For example, there could be a Hydrography coverage for anything that has to do with water. Finally, A VPF coverage is composed of different feature classes, each one representing a homogeneous set of features suitable to represent as a Carmenta Engine dataset. For example, a Hydrography coverage could contain different features classes for seas, lakes, rivers and canals.
In the VpfDataSet, the Path and SearchSubdirectories properties are used to locate the Library Attribute Table file (called "LAT") of one or more VPF databases, and the LibraryName, CoverageName and FeatureClass properties specify which parts of the databases to read.
If you know the path to a VPF database, you can find out the available libraries, coverages and feature classes by calling DataSetInfo.FromDirectory and examining the DataSetInfo.AdditionalInfo of the result.
Like several other Carmenta Engine datasets, the VpfDataSet will do an initial scan of the entire database the first time it is loaded, and create index files in the directories specified by the IndexPath and FeatureIndexPath properties.
Inheritance Hierarchy
System.Object (not available in C#)
EngineObject
ResourceObject
DataSet
FileDataSet
MultiFileDataSet
VpfDataSet
Platforms
Windows, Linux, Android
VpfDataSet Members
The VpfDataSet type has the following members.
Constructors
Name | Description |
---|---|
VpfDataSet | Initializes a new instance of the VpfDataSet class with the given path and VPF parameters. |
Properties
Name | Description |
---|---|
IReadAttributes.Attributes | Gets a collection whose contents determine which attributes will be read the DataSet. Inherited from IReadAttributes |
CoverageName | Gets the name of the coverage subdirectory in the library directory. |
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 |
FeatureClass | Gets the name of the VPF feature class to read. |
FeatureIndexPath | Gets or sets the directory where the feature index files will be saved. |
ISearchable.HasSearchIndex | Gets a value that tells whether a dataset has a search index. Inherited from ISearchable |
Id | Gets a unique identifier for this dataset instance. Inherited from DataSet |
IndexFileName | Gets or sets an explicit index file name used for the generated index files in IndexPath. Inherited from MultiFileDataSet |
IndexPath | Gets or sets the directory where the dataset index files are saved. Inherited from MultiFileDataSet |
IsDisposed | Gets a value that tells whether the current VpfDataSet has been disposed. Inherited from EngineObject |
IsoMetadataDocument | Gets or sets the path to an ISO 19139 metadata document for the dataset. Inherited from DataSet |
LibraryName | Gets the name of the library subdirectory in the database root directory. |
Name | Gets or sets the name of the VpfDataSet. Inherited from ResourceObject |
NativeHandle | Gets the native Carmenta Engine kernel object the current VpfDataSet represents. Inherited from EngineObject |
Path | Gets or sets the path to the file or files to read from. Inherited from FileDataSet |
IReadAttributes.ReadAttributes | Gets or sets a value indicating whether the DataSet reads attributes. Inherited from IReadAttributes |
SearchableAttributes | The attributes that will be used to create a search index for the dataset. |
SearchableCondition | Gets or sets a condition that determines which features will be included in the search index for the dataset. |
SearchSubdirectories | Gets or sets a flag indicating if the dataset will search for data files recursively. Inherited from MultiFileDataSet |
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 |
VerifyIndexFiles | Gets or sets a flag indicating if the contents of index files should be verified before use. Inherited from MultiFileDataSet |
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 |
ISearchable.Search | Overloaded. Searches for features with an attribute whose value match the specified search text. Inherited from ISearchable |
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 |