← Inbox

C3D-TBCDUMP · Dump all TBC-family points (read-only) done

Every TBC/TBC COR/TBC END point with number+coords, sorted, to trace real back-of-curb linework.

Script file
C3D-TBCDUMP.cs
Target
active document · model space
Author
claude
Approved
yes · claude (read-only)
Timeout
60s

C# payload

// READ-ONLY: dump every TBC-family point (TBC, TBC COR, TBC END, TBC END CON, TBC CROSS WALK) with
// point number + coords, sorted by point number, so we can trace back-of-curb linework from real data.
using System;
using System.Linq;
using System.Collections.Generic;
using Autodesk.Civil.ApplicationServices;
using Autodesk.Civil.DatabaseServices;
using Autodesk.AutoCAD.DatabaseServices;

var db = Db;
var cdoc = CivilDocument.GetCivilDocument(db);
using (var tr = db.TransactionManager.StartTransaction())
{
    var rows = new List<(int n, double e, double no, double z, string d)>();
    foreach (ObjectId id in cdoc.CogoPoints)
    {
        var cp = tr.GetObject(id, OpenMode.ForRead) as CogoPoint;
        if (cp == null) continue;
        var raw = (cp.RawDescription ?? "").Trim().ToUpperInvariant();
        if (!raw.StartsWith("TBC")) continue;
        rows.Add(((int)cp.PointNumber, cp.Easting, cp.Northing, cp.Elevation, cp.RawDescription));
    }
    rows.Sort((a,b) => a.n.CompareTo(b.n));
    Log($"TBC-family points: {rows.Count}");
    foreach (var r in rows)
        Log($"{r.n},{r.e:0.00},{r.no:0.00},{r.z:0.00},{r.d}");
    tr.Commit();
}

Result

Status
success
Drawing file
C:\Users\sanja\OneDrive\_SurveyDisco\260709 - 1512 Bass Rd, Macon, GA 31210, USA\260709 - 1512 Bass Rd.dwg
Message
Executed C3D-TBCDUMP (0 entities touched).
Entities
Duration
470 ms
Civil 3D
25.0.0.0

Log

TBC-family points: 299
100,2428141.27,1064465.53,419.67,TBC
101,2428155.49,1064483.51,419.62,TBC COR
102,2428140.24,1064495.49,419.42,TBC
103,2428120.84,1064510.89,419.21,TBC COR
106,2428135.26,1064529.86,418.86,TBC COR
107,2428099.91,1064559.60,418.48,TBC END
110,2428098.86,1064560.50,418.40,TBC COR
111,2428091.49,1064551.49,418.69,TBC COR
112,2428079.18,1064561.72,418.58,TBC COR
113,2428085.57,1064577.81,418.24,TBC COR
114,2428066.48,1064613.47,417.62,TBC END
118,2428064.58,1064614.20,417.56,TBC
119,2428012.99,1064593.98,417.35,TBC
120,2427941.60,1064565.81,416.67,TBC
121,2427895.79,1064547.77,416.46,TBC
122,2427882.98,1064542.33,416.12,TBC
123,2427874.91,1064538.07,416.07,TBC
124,2427867.87,1064532.18,416.07,TBC
125,2427861.73,1064525.29,416.09,TBC
126,2427858.35,1064519.93,416.01,TBC
127,2427856.27,1064513.03,415.95,TBC
128,2427855.39,1064505.01,416.00,TBC
194,2427983.53,1064712.47,414.40,TBC
197,2428020.90,1064724.69,414.42,TBC COR
198,2428008.08,1064735.69,413.91,TBC
199,2428006.69,1064736.85,413.94,TBC
200,2428006.52,1064737.65,413.95,TBC
201,2428007.29,1064738.85,413.92,TBC
202,2428015.32,1064741.53,413.97,TBC
203,2428016.97,1064742.06,413.66,TBC END
204,2428021.57,1064743.60,413.84,TBC END
205,2428023.77,1064744.33,414.12,TBC
206,2428026.93,1064744.86,414.11,TBC END
221,2428041.49,1064735.59,414.34,TBC
222,2428044.86,1064725.90,414.46,TBC END
228,2428065.81,1064742.28,414.90,TBC
229,2428064.90,1064745.65,414.86,TBC
230,2428065.02,1064749.50,414.83,TBC
231,2428065.79,1064752.96,414.82,TBC
232,2428068.06,1064756.47,414.82,TBC
233,2428071.04,1064759.09,414.88,TBC
234,2428074.01,1064760.75,414.94,TBC
235,2428076.77,1064761.61,414.49,TBC END
236,2428082.42,1064763.41,414.49,TBC END
238,2428083.96,1064764.03,414.93,TBC
239,2428085.24,1064764.34,414.99,TBC
240,2428086.49,1064764.16,415.00,TBC
241,2428087.99,1064763.12,415.05,TBC
244,2428101.83,1064751.20,415.39,TBC COR
246,2428127.60,1064759.62,415.48,TBC
248,2428138.78,1064763.40,415.48,TBC
249,2428169.43,1064773.43,415.42,TBC
254,2428021.46,1064765.31,414.13,TBC
260,2428059.46,1064777.83,414.48,TBC
262,2428077.72,1064783.77,414.69,TBC
263,2428079.13,1064784.56,414.72,TBC
264,2428080.09,1064786.08,414.64,TBC
265,2428084.09,1064804.57,414.28,TBC COR
267,2428109.64,1064812.98,414.08,TBC
268,2428109.64,1064812.99,414.09,TBC
281,2428152.42,1064827.01,413.63,TBC
282,2428152.06,1064835.18,413.32,TBC
283,2428107.41,1064820.85,413.68,TBC
284,2428078.81,1064811.77,413.91,TBC COR
285,2428083.07,1064828.08,414.26,TBC
286,2428083.33,1064829.62,414.24,TBC
287,2428082.77,1064830.79,414.30,TBC
288,2428081.48,1064830.77,414.33,TBC
289,2428078.49,1064829.76,414.27,TBC
290,2428061.11,1064824.00,413.96,TBC END CON
292,2428056.41,1064822.49,414.04,TBC END CON
293,2428052.68,1064821.24,414.30,TBC
294,2428032.28,1064814.49,414.27,TBC
302,2428005.85,1064805.69,414.13,TBC
303,2428001.48,1064804.29,413.63,TBC END CON
304,2427997.43,1064802.92,413.54,TBC END CON
307,2427994.88,1064802.03,413.88,TBC
308,2427993.63,1064801.33,413.88,TBC
309,2427992.50,1064798.88,413.80,TBC
311,2427988.27,1064781.44,413.36,TBC COR
312,2427960.05,1064772.15,413.19,TBC END
313,2427965.50,1064765.34,413.23,TBC END
314,2427993.49,1064774.78,413.38,TBC COR
315,2427991.78,1064758.28,413.90,TBC
316,2427991.59,1064756.71,413.97,TBC
317,2427991.96,1064756.00,413.95,TBC
318,2427993.03,1064755.76,413.97,TBC
320,2428008.34,1064760.94,414.10,TBC
321,2428010.92,1064761.89,413.71,TBC END CON
323,2428014.86,1064763.15,413.78,TBC END
324,2428017.25,1064763.88,414.12,TBC
326,2428040.34,1064771.62,414.33,TBC
327,2427983.14,1064820.25,414.09,TBC
328,2427997.98,1064825.25,414.38,TBC
329,2428002.16,1064828.13,414.58,TBC
330,2428005.99,1064834.33,414.76,TBC
331,2428006.28,1064841.54,414.89,TBC
332,2428029.67,1064852.22,414.39,TBC
333,2428032.62,1064846.16,414.63,TBC
334,2428039.63,1064841.75,414.87,TBC
335,2428047.46,1064841.69,414.99,TBC
336,2428050.31,1064842.41,414.66,TBC CROSS WALK
337,2428055.03,1064844.02,414.55,TBC CROSS WALK
338,2428057.14,1064844.58,414.88,TBC
339,2428063.74,1064846.84,414.85,TBC
340,2428064.85,1064847.62,414.85,TBC
341,2428064.48,1064848.86,414.82,TBC
394,2427933.18,1064803.66,413.70,TBC
395,2427929.40,1064801.64,413.58,TBC
396,2427926.51,1064799.26,413.50,TBC
397,2427924.60,1064795.15,413.43,TBC
398,2427922.03,1064786.80,413.26,TBC
399,2427921.24,1064783.71,413.15,TBC
400,2427919.51,1064779.37,413.08,TBC
401,2427916.02,1064774.30,412.93,TBC
402,2427910.85,1064769.24,412.79,TBC
403,2427905.40,1064765.83,412.76,TBC
404,2427898.75,1064762.73,412.80,TBC
406,2427910.69,1064736.98,412.49,TBC
407,2427917.61,1064737.48,412.54,TBC
408,2427923.57,1064736.35,412.81,TBC
409,2427928.00,1064733.99,412.97,TBC
410,2427931.55,1064731.19,413.19,TBC
411,2427932.71,1064730.11,412.90,TBC END
425,2427885.49,1064728.61,412.44,TBC
427,2427874.24,1064754.19,412.31,TBC
428,2427849.69,1064745.92,412.18,TBC
429,2427844.26,1064745.94,412.12,TBC
430,2427841.50,1064745.22,412.12,TBC
432,2427837.64,1064741.72,412.26,TBC
434,2427860.95,1064720.25,412.19,TBC
435,2427854.50,1064716.22,412.26,TBC
436,2427851.46,1064715.28,412.32,TBC
438,2427844.83,1064714.61,412.25,TBC
451,2427813.34,1064704.03,412.86,TBC
453,2427802.47,1064729.82,412.92,TBC
456,2427791.46,1064726.06,413.04,TBC
457,2427783.52,1064723.99,413.13,TBC
458,2427777.48,1064723.66,413.27,TBC
459,2427773.15,1064724.37,413.24,TBC
460,2427764.13,1064728.77,413.43,TBC
461,2427758.45,1064735.04,413.66,TBC
464,2427733.10,1064718.22,413.85,TBC
465,2427753.24,1064651.18,413.08,TBC
467,2427780.03,1064659.69,412.98,TBC
468,2427787.70,1064664.28,413.87,TBC
470,2427797.62,1064698.52,413.07,TBC
471,2427789.95,1064695.15,413.11,TBC
472,2427783.77,1064690.42,413.23,TBC
473,2427778.67,1064681.78,413.23,TBC
474,2427777.46,1064677.38,413.11,TBC
475,2427777.43,1064670.38,413.03,TBC
476,2427778.32,1064665.46,412.95,TBC
482,2427796.19,1064605.18,412.55,TBC
483,2427796.17,1064605.18,412.55,TBC
484,2427798.73,1064601.18,412.49,TBC
485,2427799.74,1064598.08,412.38,TBC
486,2427800.70,1064590.29,412.69,TBC
490,2427769.79,1064596.39,412.49,TBC
491,2427770.25,1064591.32,412.53,TBC
492,2427770.94,1064588.50,412.49,TBC
493,2427773.52,1064583.78,412.59,TBC
494,2427779.11,1064565.44,412.80,TBC
496,2427805.76,1064573.24,412.88,TBC
503,2427876.57,1064539.16,416.07,TBC
504,2427867.90,1064532.23,416.03,TBC
505,2427860.55,1064523.95,415.99,TBC
506,2427857.36,1064517.44,415.94,TBC
507,2427855.64,1064507.72,415.95,TBC
508,2427855.00,1064502.96,415.88,TBC
509,2427854.52,1064502.02,415.83,TBC
510,2427853.03,1064500.45,415.84,TBC
511,2427851.16,1064499.40,415.88,TBC
512,2427850.03,1064498.57,415.98,TBC
513,2427849.21,1064496.93,416.09,TBC
514,2427849.13,1064496.55,416.11,TBC
515,2427849.11,1064496.55,416.08,TBC
516,2427850.70,1064492.44,416.00,TBC
517,2427852.97,1064488.66,416.27,TBC
518,2427842.62,1064476.15,415.89,TBC
519,2427822.18,1064481.61,414.73,TBC
520,2427831.31,1064450.69,416.00,TBC
521,2427818.16,1064452.41,415.55,TBC
522,2427797.69,1064430.91,414.43,TBC
527,2427889.22,1064480.15,418.02,TBC
528,2427890.95,1064477.90,418.39,TBC
529,2427907.97,1064487.12,418.84,TBC
530,2427911.09,1064483.94,418.84,TBC
533,2427942.07,1064493.58,419.19,TBC DUMPSTER GATE
534,2427958.24,1064506.78,418.60,TBC
537,2427950.76,1064484.57,418.91,TBC GATEDUMPSTER COR
538,2427915.77,1064450.71,418.30,TBC
539,2427915.51,1064452.78,418.39,TBC
540,2427916.55,1064454.87,418.40,TBC
541,2427920.20,1064458.12,418.47,TBC
542,2427924.49,1064460.12,418.56,TBC
543,2427930.16,1064460.38,418.66,TBC
544,2427935.30,1064458.59,418.65,TBC
545,2427938.94,1064455.92,418.63,TBC CROSS WALK
546,2427942.84,1064453.12,418.61,TBC CROSS WALK
551,2427976.43,1064514.09,418.48,TBC
552,2428007.14,1064526.21,418.35,TBC
553,2428007.62,1064525.27,418.33,TBC
554,2427988.67,1064501.05,418.69,TBC
555,2427968.73,1064475.51,418.80,TBC
556,2427965.81,1064470.84,418.93,TBC
557,2427972.31,1064465.24,418.91,TBC
558,2427974.16,1064464.00,418.87,TBC
559,2427976.56,1064463.77,418.85,TBC
560,2427978.25,1064464.94,418.90,TBC
561,2427978.49,1064468.62,419.02,TBC
562,2427976.67,1064469.87,418.96,TBC
565,2428009.98,1064526.05,418.49,TBC
566,2428009.48,1064527.10,418.48,TBC
567,2428025.49,1064522.64,418.65,TBC
568,2428026.65,1064522.70,418.63,TBC
569,2428027.54,1064523.31,418.62,TBC
570,2428024.03,1064532.77,418.54,TBC
571,2428039.86,1064538.86,418.61,TBC
572,2428043.72,1064543.55,418.45,TBC
573,2428042.53,1064542.71,418.41,TBC
574,2428040.25,1064542.89,418.44,TBC
575,2428038.34,1064544.48,418.45,TBC
576,2428035.35,1064551.88,418.37,TBC
577,2428035.52,1064553.81,418.40,TBC
578,2428037.37,1064555.65,418.42,TBC
579,2428039.80,1064556.01,418.44,TBC
580,2428046.67,1064556.72,418.49,TBC
581,2428047.89,1064556.45,418.50,TBC
582,2428048.70,1064555.81,418.48,TBC
583,2428049.88,1064554.47,418.46,TBC
584,2428049.99,1064552.26,418.49,TBC
585,2428049.16,1064550.27,418.48,TBC
611,2428058.41,1064522.83,418.89,TBC
661,2427999.30,1064444.49,418.99,TBC
662,2427997.92,1064445.52,418.82,TBC
663,2428006.19,1064456.57,419.04,TBC
665,2428025.46,1064481.28,418.93,TBC DRIVE THRU WINDOW
669,2428042.37,1064502.49,419.08,TBC
671,2427981.34,1064423.05,418.66,TBC
672,2428004.64,1064404.77,418.63,TBC
673,2428006.53,1064402.80,418.70,TBC
674,2428007.25,1064401.13,418.74,TBC
675,2428006.87,1064399.52,418.74,TBC
676,2428045.95,1064370.83,417.72,TBC
677,2428037.04,1064378.01,418.02,TBC
678,2428034.75,1064380.08,418.17,TBC
679,2428033.73,1064381.34,418.22,TBC
680,2428033.41,1064382.78,418.29,TBC
681,2428034.01,1064383.75,418.28,TBC
682,2428035.71,1064385.70,418.29,TBC
683,2428037.47,1064386.96,418.34,TBC
684,2428039.85,1064387.63,418.37,TBC
685,2428043.48,1064387.80,418.47,TBC
686,2428047.58,1064387.08,418.71,TBC
687,2428050.93,1064385.72,418.98,TBC
690,2428058.59,1064379.68,419.31,TBC
691,2428068.04,1064371.91,419.91,TBC
703,2428104.89,1064444.99,419.60,TBC
704,2428117.93,1064435.58,419.72,TBC COR
708,2428104.95,1064444.99,419.60,TBC
709,2428105.56,1064448.93,419.64,TBC
710,2428108.29,1064452.01,419.59,TBC
711,2428123.35,1064442.77,419.73,TBC COR
727,2428087.05,1064333.83,428.82,TBC
728,2428111.61,1064367.07,429.12,TBC
729,2428131.32,1064394.00,428.95,TBC
730,2428148.34,1064415.98,428.88,TBC
731,2428161.91,1064432.73,428.74,TBC
732,2428165.52,1064438.04,428.60,TBC
733,2428168.62,1064446.22,428.32,TBC
734,2428169.77,1064452.57,428.24,TBC END
739,2428196.65,1064492.69,427.97,TBC
741,2428201.08,1064491.60,428.07,TBC
742,2428205.59,1064491.67,428.17,TBC
743,2428211.89,1064492.98,428.38,TBC
744,2428217.72,1064495.91,428.69,TBC
745,2428221.37,1064498.72,428.90,TBC
754,2428301.11,1064567.16,428.81,TBC
755,2428283.49,1064553.21,428.68,TBC
756,2428261.70,1064535.39,428.85,TBC
757,2428243.13,1064519.11,428.66,TBC
758,2428221.85,1064499.40,428.83,TBC
772,2427809.34,1064557.12,396.48,TBC
773,2427813.07,1064537.84,396.57,TBC
775,2427781.98,1064553.13,396.28,TBC
777,2427785.05,1064531.87,396.44,TBC
779,2427813.64,1064526.61,396.48,TBC
780,2427812.91,1064504.53,396.64,TBC
781,2427813.45,1064498.98,396.97,TBC
782,2427815.07,1064491.34,397.47,TBC
783,2427818.09,1064484.51,397.77,TBC
784,2427824.72,1064479.71,398.32,TBC
785,2427835.15,1064475.87,398.85,TBC
786,2427844.48,1064476.41,399.41,TBC
787,2427849.56,1064480.51,399.60,TBC
788,2427849.67,1064480.51,399.62,TBC
789,2427851.59,1064485.27,399.56,TBC
790,2427852.74,1064488.51,399.69,TBC

Notes

What worked, what didn't, job-specific gotchas — flagged notes feed the recipes.

No notes yet.