I have created a plugin that calculates the intersections between grids. The coordinates from the intersection calculation are using the basepoint position as the origin of the coordinates. I want to convert the coordinates to the Survey Point position. I tried to fetch the coordinates of the base point with this code:
ElementCategoryFilter filter = new ElementCategoryFilter(BuiltInCategory.OST_ProjectBasePoint);
FilteredElementCollector collector = new FilteredElementCollector(doc);
IList<Element> elements = collector.WherePasses(filter).ToElements();
foreach (Element element in elements)
{
double x = element.get_Parameter(BuiltInParameter.BASEPOINT_EASTWEST_PARAM).AsDouble();
double y = element.get_Parameter(BuiltInParameter.BASEPOINT_NORTHSOUTH_PARAM).AsDouble();
double elevation = element.get_Parameter (BuiltInParameter.BASEPOINT_ELEVATION_PARAM).AsDouble();
}
I wanted to use the basepoint coordinates to adjust the coordinates i found in my intersection calculation to use the Survey Point as a origin. But i can`t figure how to use the values from basepoint to adjust the coordinates. It seems the values in basepoint is not using survey point as origin, but maybe the internal coordinates. Or maybe i misunderstood the values in basepoint. Any pointers to what i can try ?