MapPackageModelWriter Class
A writer class for writing 3D models to a GeoPackage, using a Carmenta-specific extension.
NuGet/Assembly: Carmenta.Engine.5.16.2.nupkg (in the CEDataSets assembly)
Syntax
public class MapPackageModelWriter : MapPackageWriter
Remarks
MapPackageModelWriter can write georeferenced 3D models to a table in a GeoPackage. The resulting model tables contain Carmenta models – a Carmenta-specific extension to the GeoPackage format – and are optimized for display in a GlobeView using the property GlobeView.AuxiliaryGroundInput.
3D Tiles is the only input model type that is currently supported. To create a 3D Tiles MapPackageModelWriter, use the MapPackage.Create3DTilesModelWriter method on the MapPackage class.
The destination table name and conversion settings, including detail settings affecting the level-of-detail assignment of the resulting GeoPackage table, can be configured on the attached MapPackageModelTable. To convert the model data and write it into the destination table, call Convert.
To use the resulting model in a GlobeView configuration, add a ReadOperator to the GlobeView's auxiliaryGroundInput property, and add a MapPackageDataSet to the ReadOperator's dataSet property. Configure the MapPackageDataSet's path and filename properties to point to the GeoPackage file to which the model was written. Finally, set the MapPackageDataSet.TableName property to the table name used when writing the model, that is, MapPackageTable.Name.
If you used MapPackageModelTable.ExtraTileLevels to increase the maximum detail level of the models, you should also set the GlobeView.ExtraTileLevels property to the same value to let GlobeView load all detail levels.
To automatically deduce appropriate detail settings for the input model data, invoke DeduceDetailSettings before calling Convert.
You can also use Estimate to get calculate estimate of the resulting detail density per tile level given the current detail settings. This lets you test your settings without taking the full time to convert with Convert.
Example
// Convert a 3D Tiles data set to a GlobeView-friendly table in a GeoPackage.
// Assumes that tilesetJsonFile contains the path to a 3D Tiles tileset.json file.
static bool convert3dTilesToGeoPackage(string filename, string tilesetJsonFile)
{
// Create new map package
var mapPackage = new MapPackage(filename);
// Create a model table
var modelTable = new MapPackageModelTable("models");
// Configure conversion.
modelTable.ElevationOffset = 100.0; // Raises the model by 100m.
// Configure detail settings.
modelTable.ExtraTileLevels = 2; // Creates two extra tile levels compared with default.
modelTable.LevelOfDetailMultiplier = 1.5; // Makes each tile level 50% more detailed than default.
// Create model writer
var modelWriter = mapPackage.Create3DTilesModelWriter(modelTable, tilesetJsonFile);
// Optional: deduce detail settings. This will overwrite the detail settings that were set above.
modelWriter.DeduceDetailSettings();
// It is possible to adjust detail settings after deduction:
modelTable.ExtraTileLevels -= 1; // Remove the most detailed tile level.
modelTable.LevelOfDetailMultiplier *= 0.8; // Slightly reduce detail density.
// Convert 3D Tiles data using the settings configured above.
bool result = modelWriter.Convert();
mapPackage.Close();
return result;
}
Inheritance Hierarchy
System.Object (not available in C#)
EngineObject
MapPackageWriter
MapPackageModelWriter
Platforms
Windows, Linux, Android
MapPackageModelWriter Members
The MapPackageModelWriter type has the following members.
Properties
Name | Description |
---|---|
IsDisposed | Gets a value that tells whether the current MapPackageModelWriter has been disposed. Inherited from EngineObject |
IsWorking Deprecated | Gets a value indicating if the writer is currently working on some other thread. Inherited from MapPackageWriter |
NativeHandle | Gets the native Carmenta Engine kernel object the current MapPackageModelWriter represents. Inherited from EngineObject |
OptimizeMeshTextures | Gets or sets a flag indicating if an optimization of mesh textures should be performed when converting the input model data. |
Table | The MapPackageTable to create and write to in the GeoPackage. Inherited from MapPackageWriter |
Methods
Name | Description |
---|---|
Abort | Aborts a write operation and deletes the table from the GeoPackage. Inherited from MapPackageWriter |
Clone | Creates a copy of an object. Inherited from EngineObject |
Convert | Converts the input model data and writes the result to the GeoPackage table. |
DeduceDetailSettings | Automatically deduces appropriate level-of-detail settings for the input model data. |
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 |
Estimate | Estimates resulting detail level of a conversion using Convert. |
Progress | Get information on the progress of the conversion. |