Skip to main content

How does manipulating the Project Base Point and Survey Point affect the Project(05 of 10)

If you're using the default templates provided by Autodesk, then in any plan view after unhiding the SBP & PBP, you can observe that both PBP & SBP are at the same location and overlapping each other. If you select either of the base points, you can see the information of the Point and also a Gizmo that allows us to move the selected base point in the 2D plane. But the orientation of the Gizmo for both the points might be different depending on the Orientation of Project North and True 

North.

Before moving either of the points, notice a clip shaped icon when you select either of the points. This icon denotes the clipped/unclipped state of the respective point, which says how moving the point would affect the entire project.

Clip/Unclip the Base Points
If you move the points using the Gizmo, you'll notice that moving the Project Base Point moves the whole project i.e., all the elements modeled, while moving the Survey Base Point doesn't do anything. But moving either of the points affects the entire project and is not recommended until you're very comfortable with it and understand the concept of the coordinate system in Revit.

Let's take the example from my previous post(02 of 10) to better explain this.

Click here to see the example

To better understand what a project base point is, let's assume we're creating a 3D model of a building on the top of a Cardboard/Canvas with a size of "100cm  X 100cm" that is placed on a table with a size of "200cm X 200cm" whose height is 75cm from the ground placed exactly at the North Pole. 

Let's consider for this model, the Center of the table to calibrate the physical/actual location on site, the Survey Base Point would be N=0, E=90, Elev 75cm. So if you change the value of survey base point, it means that you've moved the table to another location on the earth.


And if we consider the Project Base Point to be the bottom-left corner of the Cardboard/Canvas whose values would be X=0, Y=0, Z=0. You can change this point by moving the Cardboard. All the model elements location is relative to that point. And if your model is a combination of several sub-models(which you created separately) that you combined(linked) to make the whole model(Revit links), then you can say the each of the sub-model has their own Project base point (0,0,0), but relative to the main cardboard, they each have their own different points they need to be placed on, which is the Shared Coordinates(explained in detail in a separate post).


Note: The symbols, X, Y, N & E in the above example are custom symbols and can be changed to anything in Revit. The default symbol for both points will be N & E

Moving the Project Base Point

There are 2 ways of moving the PBP.
  1. Moving the PBP in its clipped state:
    Clipping the PBP can be assumed as gluing the model elements to the base cardboard. This method is used when you want to move all the elements in your projects relative to the PBP i.e., this will keep the Table at the same location but all the elements along with the base cardboard is moved. So the Origin(X=0, Y=0, Z=0) of all the model elements is not changed.
  2. Unclipping the PBP and moving:
    This method is used when just you want to move the origin of your project i.e., this will keep the Table and all the model elements at the same location but only the base cardboard is moved. So the Origin(X=0, Y=0, Z=0) of all the model elements has been moved.

Moving the Survey Base Point

There are 2 ways of moving the SBP.
  1. Moving the SBP in its clipped state:
    Clipping the SBP can be assumed as gluing the base cardboard along with the model elements to the table. This method is used when you want to move all the elements in your projects relative to the SBP i.e., this will move the entire table along with all the elements & cardboard to a new location. So the Origin(X=0, Y=0, Z=0) of all the model elements is not changed.
  2. Unclipping the PBP and moving:
    This method is used when you just want to move the SBP of your project i.e., this will keep the base Canvas and all the model elements at the same location but only the Table is moved. So the Origin(X=0, Y=0, Z=0) of all the model elements is not changed. This means that the relative position of all the model elements w.r.t the PBP(Origin) has not changed, but the relative position of the PBP itself w.r.t the SBP is changed.

Comments

Popular Posts

Power Query - "SUBSTITUTE" Function: Remove/Replace multiple values in a column in One Step.

Often times, when you get data from a source, there will most probably be something incorrect that needs to be fixed using an ETL process of Power Query. And most of those transformations would require either Replacing or Removing string's that are not necessary. For example, if you extract any financial data from a source which has multiple currency symbols, there's a chance that the numbers get extracted along with the currency symbols like "$700"/"€700" instead of 700. And these type of cases makes it tough to Transform the Data to our wish as the value will be considered as a text instead of a number. In those type of cases, we would most likely have to create multiple steps to remove the multiple currency symbols from the Column. But thanks to the solution provided by Marcel for one of the questions posted on Stack Overflow, with a little manipulation of the Query language (M), we can replace/Remove multiple strings in one step using the List. ...

Scribble on your PC/Mac screen with these annotation tools

     While you are in a presentation or hosting a webinar, you might want to write/highlight a part of your screen to draw the attention of your audience on something important. Although you can use the tools from powerpoint to scribble in the PPT file, you might want to write something on other apps as well.      That's where these awesome apps come into play. Although these apps have similar features, you might prefer one above the other. ZoomIt :       ZoomIt is an application developed by Microsoft which can be installed from the following link . It is a free tool with features like Text, Shapes, whiteboard, blackboard, zoom . When activated, the tool converts the current screen into a static image and allows you to draw/write on it. One the tool is activated, you can also choose to create a whiteboard/blackboard screen on your PC to draw on. Although the colors are limited to 6 colors: Red (R) , Green (G) , Blue (B) , Orange (O...

Grasshopper: offsetting curves on surface vs scaling curves on surface

Though in Grasshopper Offset and Scale are two different node functions, when it comes to a planar surface, the results of the both are similar. But, I found the " Scale" node to be effective when you want to loft the resultant curve with another. The following images show the different results of a Voronoi structure that yielded when scale and offset nodes are used. When the Offset node is used When Scale is used

Grasshopper: Voronoi Holes on a Planar surface

One of the best natural examples for a Voronoi is the Wing structure of a dragon fly.Grasshopper can help us to build a shape like this in Rhino. Image Courtesy:  The Pond blog Grasshopper by default has a node for Voronoi, we just have to prepare the necessary information to feed into the node. The following example shows how to create a Voronoi shaped holes in a surface Create a planar  Surface  from rhino or grasshopper Randomly Populate the surface with points using the  Populate 2D  Node Feed the surface and the points into the  Voronoi  node and feed a number slider too to adjust eh radius This forms the required Voronoi structure which you can edit the number of points or radius. To create the holes we need to offset each and every inner portion towards its centre using the  Scale  node We can find the centre of each of the inner portions using Area node I'm not sure why but using the offset command su...