Catalog Class
The main class for accessing Carmenta Engine catalogs.
NuGet/Assembly: Carmenta.Engine.5.16.2.nupkg (in the CECatalog assembly)
Syntax
public class Catalog : ResourceObject
Remarks
This is the central class of the Catalog mechanism in Carmenta Engine. It gives an application access to a catalog with map configurations and corresponding geodata. The application can use this class to query for available maps, globes and datasets, load them and add them to a Carmenta Engine view.
The following examples show how to load a background map and attach it to view, and how to load a catalog globe and attach it to a 3D globe view. Please see the Catalog Mechanism Overview for more information about the Catalog mechanism.
Example
// Load a WorldMap background map through a Catalog
public static void LoadBackgroundMapFromCatalog(View view)
{
// Load the catalog
Catalog catalog = new Catalog("rootDir");
// This will find all metadata records with the name 'WorldMap'
CatalogQuery query = new CatalogQuery("name = \"WorldMap\"");
CatalogMetadataCollection meta = catalog.GetMaps(query);
if (meta.Count == 0)
throw new Exception("Could not find map 'WorldMap'");
// Load the map
CatalogMap map = catalog.LoadMap(meta[0]);
// Add it to the view
view.Layers.Insert(0, map);
}
// Load a catalog globe and add to a globe view
public static void LoadGlobeFromCatalog(GlobeView view)
{
// Load the catalog
Catalog catalog = new Catalog("rootDir");
// This will find all metadata records with the name '3DGlobe'
CatalogQuery query = new CatalogQuery("name = \"3DGlobe\"");
CatalogMetadataCollection meta = catalog.GetGlobes(query);
if (meta.Count == 0)
throw new Exception("Could not find globe '3DGlobe'");
// Load the globe
CatalogGlobe globe = catalog.LoadGlobe(meta[0]);
// Add it to the view, note that members may be null
if (globe.Layers != null)
view.Layers.Insert(0, globe.Layers);
if (globe.SurfaceLayers != null)
view.SurfaceLayers.Insert(0, globe.SurfaceLayers);
if (globe.ElevationInput != null)
view.ElevationInput = globe.ElevationInput;
if (globe.AuxiliaryGroundInput != null)
view.AuxiliaryGroundInput = globe.AuxiliaryGroundInput;
view.SurfaceBackground = globe.SurfaceBackground;
}
Inheritance Hierarchy
System.Object (not available in C#)
EngineObject
ResourceObject
Catalog
Platforms
Windows, Linux, Android
Catalog Members
The Catalog type has the following members.
Constructors
Name | Description |
---|---|
Catalog | Initializes a new instance of the Catalog class with the given root directory or directories. |
Properties
Name | Description |
---|---|
IsDisposed | Gets a value that tells whether the current Catalog has been disposed. Inherited from EngineObject |
Name | Gets or sets the name of the Catalog. Inherited from ResourceObject |
NativeHandle | Gets the native Carmenta Engine kernel object the current Catalog represents. Inherited from EngineObject |
PreferredLanguages | Gets or sets a list of preferred languages. |
RootDirectory | Gets the root directory or directories of the catalog. |
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 |
FlushCache | Flushes memory caches held by the catalog. |
GetAllLanguages | Gets all languages used by maps and datasets in the catalog. |
GetDataSets | Overloaded. Gets dataset metadata records in a Catalog. |
GetGlobes | Overloaded. Gets globe metadata records in a Catalog. |
GetMaps | Overloaded. Gets map metadata records in a Catalog. |
LoadDataSet | Overloaded. Loads a dataset from a catalog. |
LoadGlobe | Overloaded. Loads a globe from a catalog. |
LoadMap | Overloaded. Loads a map from a catalog. |
MonitorChanges | Starts a background thread that monitors the catalog directory for changes. |
Events
Name | Description |
---|---|
CatalogChanged | Occurs when catalog has detected changes to any of the metadata files in the catalog. |