Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

For exporting different reserves items from the Designer tab, the Export button is provided.

...

  1. Tick which levels to export in the records tree on the left.

  2. Click the Export button and select the applicable export option.

  3. Specify the path to save the file.

  4. The Export Settings dialog will opensopen. Select the file format and other parameters, if applicable.

  5. Click OK to finish.

...

Named Blast/Dig Polygons export dialog

Increments

Flag records/levels to include in export.

Output Settings

  • In the File Format field select the appropriate file format: “.arch_d”, “.str”, “.dxf”, “.obj” или “.shp”.

  • In the Line Outline select outlines you wish to export:

    • Design Polygons, or

    • Solid Silhouettes.

Filename Label

Use the dropdowns to select a filename label for: Reserves, Dumps and Backfills.

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.

...

Named Blast/Dig export dialog

Increments

Flag records/levels to include in export.

Output Settings

In the File Format field select the appropriate file format: “.arch_d”, “.str”, “.dxf”, “.obj” или “.shp”.

Filename Label

Use the dropdowns to select a filename label for: Reserves, Dumps and Backfills.

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.

Populate the information required, press OK and wait for export to be completed.

Note for Surpac Users

Note that for some internal coding purposes, when exporting blasts polygons, the software ignores the single comma.

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:

Image Added

No commas in the exported strings:

Image Added

Example code to rectify and include comma in the exported string:

Code Block
public class LabelFormat : ILabel
{        
  public string GetLabel(ShadingContext context)
  {
      return  context.GetLevelName ("Bench")           +  "_" + context.GetLevelName ("Blast") + Environment.NewLine
                      +  ",," +context.GetSolidPropertyString("PatternTemplate");
                                  }
}