← Inbox

C3D-0115 · Linework: Centerline road B [LW-CL-B] done

Centerline road B as 1 polyline(s) on SS-V-ROAD-CNTR, max 12 vertices, split at gaps over 45 ft, zero crossings verified against all other runs before posting. Points: 269,279,282,201,285,204,210,216

Script file
C3D-0115.cs
Target
active document · model space
Author
claude
Approved
yes · reviewer
Timeout
180s

C# payload

// Centerline road B -> SS-V-ROAD-CNTR
//
// survey-linework recipe. Points read from the drawing (C3D-0111), chained nearest-neighbour,
// then: split at any gap over 45 ft (the road is ~26 ft wide with shots every 5-40 ft, so a
// longer hop is a hole in the survey, not curb), capped at 12 vertices per polyline, and
// verified to have ZERO crossings against every other run before posting.
//
// Regular Polyline, never Polyline3d.
const string LAYER = "SS-V-ROAD-CNTR";
var ms = (BlockTableRecord)Tx.GetObject(SymbolUtilityServices.GetBlockModelSpaceId(Db), OpenMode.ForWrite);
EnsureLayer(LAYER, 7);

    {
        var pl = new Polyline();
        pl.AddVertexAt(0, new Point2d(2238247.3300, 1325258.8210), 0, 0, 0);
        pl.AddVertexAt(1, new Point2d(2238270.1940, 1325245.3390), 0, 0, 0);
        pl.AddVertexAt(2, new Point2d(2238295.3760, 1325226.3080), 0, 0, 0);
        pl.AddVertexAt(3, new Point2d(2238315.7150, 1325209.3060), 0, 0, 0);
        pl.AddVertexAt(4, new Point2d(2238319.8060, 1325205.1570), 0, 0, 0);
        pl.AddVertexAt(5, new Point2d(2238340.2280, 1325181.0830), 0, 0, 0);
        pl.AddVertexAt(6, new Point2d(2238356.6930, 1325159.5920), 0, 0, 0);
        pl.AddVertexAt(7, new Point2d(2238377.4800, 1325122.2160), 0, 0, 0);
        pl.Layer = LAYER;
        ms.AppendEntity(pl); Tx.AddNewlyCreatedDBObject(pl, true);
        Log(String.Format("  polyline {0} verts, {1:F2} ft  pts 269,279,282,201,285,204,210,216", pl.NumberOfVertices, pl.Length));
    }

int n = 0;
foreach (ObjectId id in ms) {
    var e = Tx.GetObject(id, OpenMode.ForRead) as Autodesk.AutoCAD.DatabaseServices.Entity;
    if (e != null && e.Layer == LAYER && e is Polyline) n++;
}
Log("SS-V-ROAD-CNTR now holds " + n + " polyline(s) (verified)");
Ed.Regen();

Result

Status
success
Drawing file
C:\Users\sanja\OneDrive\_SurveyDisco\260802 - 4082 Sweetbriar Ln, Forest Park, GA 30297, USA\260802 - 4082 Sweetbriar Ln.dwg
Message
Executed C3D-0115 (0 entities touched).
Entities
Duration
434 ms
Civil 3D
25.0.0.0

Log

  polyline 8 verts, 191.85 ft  pts 269,279,282,201,285,204,210,216
SS-V-ROAD-CNTR now holds 2 polyline(s) (verified)

Notes

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

No notes yet.