我可以在 Revit 中获取 GPS 坐标吗?
Can I get the GPS coordinate in Revit?
我可以在 Revit 中获取任何 GPS 位置吗?
假设我将测量点设置为{25.039549, 121.560771},并将工程基点设置在测量点上。如果我想知道Revit项目坐标中的{25.100000, 121.60000}在哪里,我该如何映射它?
与所有 Revit database length units 一样,Revit 项目坐标始终以英制英尺为单位。
The Building Coder discusses some aspects of GPS coordinate conversion for Mobile Device Room Location.
所以它比我想象的要简单。相对于项目基点的坐标在项目坐标中。 (无需转换)。
XYZ coord_to_proj_base = loc.Point.Subtract( project )
感谢:Autodesk 的 FAIR59 forums
我可以在 Revit 中获取任何 GPS 位置吗?
假设我将测量点设置为{25.039549, 121.560771},并将工程基点设置在测量点上。如果我想知道Revit项目坐标中的{25.100000, 121.60000}在哪里,我该如何映射它?
与所有 Revit database length units 一样,Revit 项目坐标始终以英制英尺为单位。
The Building Coder discusses some aspects of GPS coordinate conversion for Mobile Device Room Location.
所以它比我想象的要简单。相对于项目基点的坐标在项目坐标中。 (无需转换)。
XYZ coord_to_proj_base = loc.Point.Subtract( project )
感谢:Autodesk 的 FAIR59 forums