Message 1 of 2
Get Project Base Point Revit API 2025
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report
Hello everyone,
I am developing a plugin for Revit (version 2024/2025) and facing difficulties retrieving the absolute coordinates of the Base Point for linked models using the Revit API.
So far, I have tried multiple approaches to access this information:
- Used FilteredElementCollector with BuiltInCategory.OST_ProjectBasePoint and BuiltInParameter.BASEPOINT_*, but the values returned are always 0.0 or incorrect.
- Explored using the Transform of linked models to calculate the global coordinates, but the results did not match the expected absolute Base Point.
- Tried methods such as BasePoint.IsShared and other parameters, but the values retrieved were still inconsistent.
- Checked various suggestions from forums and the official Revit API documentation, but I couldn’t find a solution that worked for this specific need.
Goal:
The goal is to:
- Retrieve the absolute Project Base Point for each linked model within the global context, similar to what Revit displays in the project properties.
Question: Is there a specific or less conventional approach to retrieve the Base Point of linked models using the Revit API? Am I missing a crucial configuration or detail that would allow this?