C3D-0021 · Read point 676 [PT-676] done
Read-only: coordinates and description for point 676.
C# payload
// READ-ONLY: point 676 coordinates and description, for the tie from 378.
var cd = CivilDoc;
foreach (ObjectId id in cd.CogoPoints) {
var cp = Tx.GetObject(id, OpenMode.ForRead) as CogoPoint;
if (cp == null || cp.PointNumber != 676) continue;
Log("pt " + cp.PointNumber + " E=" + cp.Easting.ToString("F3") + " N=" + cp.Northing.ToString("F3") +
" Z=" + cp.Elevation.ToString("F2") + " '" + (cp.RawDescription ?? "") + "'");
}
Result
Log
pt 676 E=2294343.610 N=1269032.090 Z=870.95 'HC07-05'
Notes
What worked, what didn't, job-specific gotchas — flagged notes feed the recipes.
No notes yet.