export tiepoint XYZ results in 0 0 0

Dear RC team,

By

$ExportControlPoints($(name) $(x:g) $(y:g) $(alt:g))

I get: 1x12:01a 0 0 0 and 1x12:014 35 20 0

in which 01a  is a tiepoint, and 014 is a groundcontrol point. All tiepoints come out as 0 0 0, all groundcps come out with the right XYZ.

How can I export the tiepoint coordinates?

with kindest regards, M Adema

Hello dear user,
you can edit the controlpoints.xml located in C:\Program Files\Capturing Reality\RealityCapture as described below to get the result you expect.
1.    In order to enable exporting actual 3D position for both control points (no prior position) and ground control points please edit desired format (in this case comma sep,X,Y,Alt) this way:

<format id=“{CE348030-6853-4582-9904-458D3B8C2402}” mask=“*.csv” descID=“8384” desc=“Comma separated, Name, X, Y, Alt” writer=“CapturingReality.Export.ControlPoints” specificCoordSystem=“1” >
 <body>$ExportControlPoints($(name), $(actualx), $(actualy), $(actualz)
)</body>
</format>

This example is a modified 43th line of the xml document.

Thank you Erik Kubinan,

Editing the controlpoints.xml did not help, but once copied into ControlPointsMeasurements.xml I get the right result.

Kindest regards, M Adema

measurementsexport.xml is to be altered, not cpmeaurements.xml or controlpoints.xml

Oh well, anyways I am glad it helped. Good find though! Thank you for your response as well.