RR. Exporting Construction Lines, Reserves and Named Polygons from the Designer tab
In the Designer tab > Benches/Lifts panel, press the Export button provided for exporting Alastri Inventory Model (see RR. Alastri Inventory Model) Construction Lines, Reserves, Named Blast and Dig Polygons and Solids for further mine planning and operational activities.
For the description of each exporting options, see below:
Exporting Construction Lines
From the Current Bench/Flitch
You can export from the bench selected from the tree any construction lines in the following formats:
Vulcan Arch_d File (.arch_d),
Surpac STR File (.str),
Modern AutoCAD 2013 DXF and Legacy AutoCAD 2010 DXF (.dxf),
MineSight MSR (.msr),
Wavefront OBJ (.obj),
Shapefile (.shp),
Micromine Data File (.dat),
Micromine String File (.str).
Note that this option is available if only one increment is selected from the tree. If multiple benches, or the whole pit is selected, you’ll only see From Project exporting options, described in the sections below.
From Project
Blast / Dig Construction Lines
To export Blast and Dig construction lines individually to a selected folder in one of the applicable formats.
From the Export button dropdown select "From Project" and then:
“Blast Construction Lines” to export Blast Solid linework, or
“Dig Construction Lines” to export Dig Solid linework.
In the Select Folder dialog, specify the saving path and file name.
The Blast/Dig Construction Lines dialog will open, as shown below.
Flag levels you wish to export.
Select the file format: ".arch_d", ".str", ".dxf", ".obj",".shp" or “.dat”.
Press OK and wait for export to be completed.
Exporting Reserves
Reserves to Folder
To export closed polygons and closed solids of reserves and dumps to the selected folder.
From the Export button dropdown select "From Project" and then “Reserves to Folder”.
In the Select Folder dialog, specify the saving path.
The Reserves to Folder dialog will open, as shown below.
Flag levels you wish to export.
In the Triangulation field, select the applicable format for exporting the triangulation file: ".00t", ".dtm", ".dxf", ".csv", ".obj" or “.tribd“.
In the Polylines field, select the applicable format for exporting polylines: ".arch_d", ".str", ".dxf", ".obj", ".shp" or “.dat”.
In the Inclusions field, flag the corresponding checkboxes for including or not excluded blasts or digs in the export.
Press OK and wait for export to be completed.
The destination folder will contain the following files:
2D Silhouettes
3D Solids
CSVs with Blasts Parcels data for the selected increments.
Reserves Archive
To export closed polygons and closed solids of reserves and dumps as .zip archive to the selected folder.
From the Export button dropdown select "From Project" and then “Reserves Archive”.
In the Save As dialog, specify the saving path.
The Reserves Archive dialog will open, as shown below.
Flag levels you wish to export.
In the Triangulation field, select the applicable format for exporting the triangulation file: ".00t", ".dtm", ".dxf", ".csv", ".obj" or “.tribd“.
In the Polylines field, select the applicable format for exporting polylines: ".arch_d", ".str", ".dxf", ".obj",".shp" or “.dat”.
In the Inclusions field, flag the corresponding checkboxes for including or not excluded blasts or digs in the export.
Press OK and wait for export to be completed.
The destination zip will contain the following files:
2D Silhouettes
3D Solids
CSVs with extended/flat/both data on the selected increments for Blasts and Digs.
Flat - includes data on Names, DataSource, Parcels, Properties and Classes as per resmodel.
Extended - includes data on Names, Coordinates, Bench Heights, Volume, Area, Perimeter, Wall Controls, Blast Type, Custom Labels, Blast Properties and references to 3D and 2D files/
Both - includes both Flat and Extended data.
Exporting Polygons
Named Blast/Dig Polygons
To export named Blast and Dig polygons to the selected folder in one of the applicable formats.
From the Export button dropdown select "From Project" and then:
“Named Blast Polygons” to export selected blast polygons to the selected folder, or
“Named Dig Polygons” to export selected dig polygons to the selected folder.
In the Select Folder dialog, specify the saving path.
The Named Blast/Dig Polygons dialog will open. Complete the settings required as per the table below.
Press OK and wait for export to be completed.
Increments | Flag records/levels to include in export. | |
---|---|---|
Output Settings |
| |
Filename Label |
| Use the dropdowns to select a filename label* for: Reserves, Dumps and Backfills. A label has to be selected for each table, even if its increments are not included in the export. Otherwise, you’ll get an error message prompting to map labels for each level. See the Notes below. |
Layer Name Label | Use the dropdowns to select a layer name label for: Reserves, Dumps and Backfills. | |
Name Label | Use the dropdowns to select a name label for: Reserves, Dumps and Backfills. | |
Description Label | Use the dropdowns to select a description label for: Reserves, Dumps and Backfills. |
Exporting Solids
Named Blast / Dig Solids
To export named Blast and Dig Solids individually to a selected folder in one of the applicable formats.
From the Export button dropdown select "From Project" and then:
“Named Blast Solids” to export named blast solids, or
“Named Dig Solids” to export named dig solids.
In the Select Folder dialog, specify the saving path.
The Named Blast/Dig Solids dialog will open. Complete the settings required as per the table above.
Press OK and wait for export to be completed.
*Notes
For the instructions on how to create custom labels like in the example below, see RR. Blast Custom Labels page.
That means, if you want to export blast polygons with comma delimited, output string will always exclude the single commas, and you will have to use a double comma. See the example below.
Custom label view | Export output | Fixed formula to use |
---|---|---|
Commas in the label: | No commas in the exported strings:
| Example code to rectify and include comma in the exported string: public class LabelFormat : ILabel
{
public string GetLabel(ShadingContext context)
{
return context.GetLevelName ("Bench") + "_" + context.GetLevelName ("Blast") + Environment.NewLine
+ ",," +context.GetSolidPropertyString("PatternTemplate");
}
}
|