Arch Survey

Arch Survey.png Arch Survey

Menu location
Arch → Survey
Workbenches
Arch
Default shortcut
None
See also
FCInfo (macro)


Description

The survey tool enters a special surveying mode, which allows you to quickly grab measures and information from a model, and transfer that information to other applications. Once you are in Survey mode, clicking on different subelements of 3D objects gathers the following information, depending on what you click:

When such a piece of information is gathered, several things happen:

Arch Survey example.jpg

The above image shows what happens when running the survey mode.

How to use

  1. Press the Arch Survey.png Arch Survey button
  2. Click on vertices, edges, faces or double-click to select whole objects
  3. Click outside any geometry (on the background of the 3D view) to remove existing labels, print a total line in the Task dialog, and restart counting lengths and areas from zero
  4. Press ESC or the Close button to exit survey mode and remove all the labels.

Options

Arch Survey spreadsheet.jpg

Scripting

The Survey mode cannot be used directly from python scripts, but gathering the same information from any selected Part-based object is easy reproduced with the following script:

import FreeCADGui
selection = FreeCADGui.Selection.getSelectionEx()
for obj in selection:
   for element in obj.SubObjects:
       print "Area: ", element.Area
       print "Length: ", element.Length
       print "Volume: ", element.Volume
       print "Center of Mass: ", element.CenterOfMass 
Online version: "http://www.freecadweb.org/wiki/index.php?title=Arch_Survey&oldid=236809"

Navigation menu