← Inbox

C3D-SHEETDUMP2 · Dump 22X17 C sheet contents done

Read-only: every MText, DBText, Line and other entity on the 22X17 C sheet with positions, heights and content.

Script file
C3D-SHEETDUMP2.cs
Target
active document · paper space
Author
claude
Approved
yes · auto-auth
Timeout
60s

C# payload

// READ-ONLY: dump every text + line on the 22X17 C sheet so the user's manual edits can be
// compared against what was generated.
const string LAYOUT = "22X17 C";
var layDict = (DBDictionary)Tx.GetObject(Db.LayoutDictionaryId, OpenMode.ForRead);
var layout  = (Layout)Tx.GetObject(layDict.GetAt(LAYOUT), OpenMode.ForRead);
var ps      = (BlockTableRecord)Tx.GetObject(layout.BlockTableRecordId, OpenMode.ForRead);
string PMARK = "\u005CP";

int mt = 0, dt = 0, ln = 0, other = 0;
foreach (ObjectId id in ps)
{
    var e = Tx.GetObject(id, OpenMode.ForRead) as Autodesk.AutoCAD.DatabaseServices.Entity;
    if (e == null) continue;

    var m = e as MText;
    if (m != null)
    {
        mt++;
        var ex = m.GeometricExtents;
        Log("MTEXT h=" + e.Handle + " layer='" + e.Layer + "' at (" + m.Location.X.ToString("F2") + "," + m.Location.Y.ToString("F2") +
            ") th=" + m.TextHeight.ToString("F3") + " w=" + m.Width.ToString("F2") +
            " box=" + (ex.MaxPoint.X-ex.MinPoint.X).ToString("F2") + "x" + (ex.MaxPoint.Y-ex.MinPoint.Y).ToString("F2"));
        var c = m.Contents.Replace(PMARK, " | ");
        Log("   " + (c.Length > 260 ? c.Substring(0,260) + " ..." : c));
        continue;
    }
    var d = e as DBText;
    if (d != null)
    {
        dt++;
        Log("DBTEXT h=" + e.Handle + " layer='" + e.Layer + "' at (" + d.Position.X.ToString("F2") + "," + d.Position.Y.ToString("F2") +
            ") th=" + d.Height.ToString("F3") + "  >>> " + d.TextString);
        continue;
    }
    var l = e as Line;
    if (l != null)
    {
        ln++;
        Log("LINE   h=" + e.Handle + " layer='" + e.Layer + "' (" + l.StartPoint.X.ToString("F2") + "," + l.StartPoint.Y.ToString("F2") +
            ") -> (" + l.EndPoint.X.ToString("F2") + "," + l.EndPoint.Y.ToString("F2") + ") len=" + l.Length.ToString("F2"));
        continue;
    }
    other++;
    Log("OTHER  h=" + e.Handle + " " + e.GetType().Name + " layer='" + e.Layer + "'");
}
Log("counts: MText=" + mt + " DBText=" + dt + " Line=" + ln + " other=" + other);

Result

Status
success
Drawing file
C:\Users\sanja\OneDrive\_SurveyDisco\260619 - 3625 Stonewall Tell Rd, Atlanta, GA 30349, USA\260619 - 3625 Stonewall Tell Rd ROTATE.dwg
Message
Executed C3D-SHEETDUMP2 (0 entities touched).
Entities
Duration
401 ms
Civil 3D
25.0.0.0

Log

OTHER  h=213FC Viewport layer='0'
LINE   h=213FF layer='TB1' (11.20,0.33) -> (21.76,0.33) len=10.57
LINE   h=21400 layer='BLOCK_NORTH_ARROW' (21.31,16.36) -> (21.31,15.73) len=0.63
LINE   h=21401 layer='BLOCK_NORTH_ARROW' (21.31,16.36) -> (21.26,15.72) len=0.64
LINE   h=21402 layer='BLOCK_NORTH_ARROW' (21.30,15.73) -> (21.30,16.33) len=0.60
LINE   h=21403 layer='BLOCK_NORTH_ARROW' (21.30,15.73) -> (21.30,16.25) len=0.52
LINE   h=21404 layer='BLOCK_NORTH_ARROW' (21.29,15.73) -> (21.29,16.17) len=0.45
OTHER  h=21405 Polyline2d layer='BLOCK_NORTH_ARROW'
DBTEXT h=2141C layer='BLOCK_NORTH_ARROW' at (21.45,13.29) th=0.076  >>> GA W.GRID
LINE   h=2141D layer='BLOCK_NORTH_ARROW' (21.31,13.98) -> (21.31,13.34) len=0.63
OTHER  h=2141E Arc layer='BLOCK_NORTH_ARROW'
LINE   h=2141F layer='BLOCK_NORTH_ARROW' (21.31,13.98) -> (21.24,13.39) len=0.59
LINE   h=21420 layer='BLOCK_NORTH_ARROW' (21.29,13.38) -> (21.29,13.85) len=0.47
LINE   h=21421 layer='BLOCK_NORTH_ARROW' (21.30,13.37) -> (21.30,13.90) len=0.53
LINE   h=21422 layer='BLOCK_NORTH_ARROW' (21.30,13.36) -> (21.30,13.96) len=0.60
LINE   h=21423 layer='BLOCK_NORTH_ARROW' (21.27,13.39) -> (21.27,13.69) len=0.30
LINE   h=21424 layer='BLOCK_NORTH_ARROW' (21.27,13.39) -> (21.27,13.64) len=0.25
LINE   h=21425 layer='BLOCK_NORTH_ARROW' (21.26,13.39) -> (21.26,13.59) len=0.20
LINE   h=21426 layer='BLOCK_NORTH_ARROW' (21.25,13.39) -> (21.25,13.54) len=0.14
LINE   h=21427 layer='BLOCK_NORTH_ARROW' (21.25,13.39) -> (21.25,13.49) len=0.09
LINE   h=21428 layer='BLOCK_NORTH_ARROW' (21.24,13.39) -> (21.24,13.43) len=0.04
LINE   h=21429 layer='BLOCK_NORTH_ARROW' (21.28,13.39) -> (21.28,13.75) len=0.36
LINE   h=2142A layer='BLOCK_NORTH_ARROW' (21.28,13.38) -> (21.28,13.80) len=0.41
LINE   h=2142B layer='BLOCK_NORTH_ARROW' (21.30,14.23) -> (21.31,13.98) len=0.25
LINE   h=2142C layer='BLOCK_NORTH_ARROW' (21.31,15.60) -> (21.31,15.01) len=0.59
LINE   h=2142D layer='BLOCK_NORTH_ARROW' (21.22,15.24) -> (21.20,15.00) len=0.24
OTHER  h=2142E Polyline2d layer='BLOCK_NORTH_ARROW'
OTHER  h=21441 Polyline2d layer='BLOCK_NORTH_ARROW'
LINE   h=21458 layer='BLOCK_NORTH_ARROW' (21.25,15.00) -> (21.25,15.23) len=0.23
LINE   h=21459 layer='BLOCK_NORTH_ARROW' (21.24,15.00) -> (21.24,15.24) len=0.24
LINE   h=2145A layer='BLOCK_NORTH_ARROW' (21.24,15.00) -> (21.24,15.26) len=0.25
LINE   h=2145B layer='BLOCK_NORTH_ARROW' (21.23,15.00) -> (21.23,15.27) len=0.27
LINE   h=2145C layer='BLOCK_NORTH_ARROW' (21.22,15.00) -> (21.22,15.29) len=0.29
LINE   h=2145D layer='BLOCK_NORTH_ARROW' (21.22,15.00) -> (21.22,15.24) len=0.23
LINE   h=2145E layer='BLOCK_NORTH_ARROW' (21.28,15.21) -> (21.28,15.58) len=0.37
LINE   h=2145F layer='BLOCK_NORTH_ARROW' (21.29,15.20) -> (21.29,15.59) len=0.39
LINE   h=21460 layer='BLOCK_NORTH_ARROW' (21.30,15.18) -> (21.30,15.59) len=0.41
LINE   h=21461 layer='BLOCK_NORTH_ARROW' (21.30,15.17) -> (21.30,15.59) len=0.43
OTHER  h=21462 Polyline2d layer='BLOCK_NORTH_ARROW'
LINE   h=21471 layer='BLOCK_NORTH_ARROW' (21.31,14.77) -> (21.31,14.56) len=0.21
OTHER  h=21472 Polyline2d layer='BLOCK_NORTH_ARROW'
LINE   h=21485 layer='BLOCK_NORTH_ARROW' (21.19,14.94) -> (21.17,14.61) len=0.33
LINE   h=21486 layer='BLOCK_NORTH_ARROW' (21.25,14.60) -> (21.25,14.94) len=0.34
LINE   h=21487 layer='BLOCK_NORTH_ARROW' (21.25,14.60) -> (21.25,14.94) len=0.34
LINE   h=21488 layer='BLOCK_NORTH_ARROW' (21.24,14.61) -> (21.24,14.94) len=0.34
LINE   h=21489 layer='BLOCK_NORTH_ARROW' (21.24,14.61) -> (21.24,14.94) len=0.33
LINE   h=2148A layer='BLOCK_NORTH_ARROW' (21.23,14.61) -> (21.23,14.94) len=0.33
LINE   h=2148B layer='BLOCK_NORTH_ARROW' (21.22,14.61) -> (21.22,14.94) len=0.33
LINE   h=2148C layer='BLOCK_NORTH_ARROW' (21.22,14.61) -> (21.22,14.94) len=0.33
LINE   h=2148D layer='BLOCK_NORTH_ARROW' (21.21,14.61) -> (21.21,14.94) len=0.33
LINE   h=2148E layer='BLOCK_NORTH_ARROW' (21.21,14.61) -> (21.21,14.94) len=0.33
LINE   h=2148F layer='BLOCK_NORTH_ARROW' (21.20,14.61) -> (21.20,14.94) len=0.33
LINE   h=21490 layer='BLOCK_NORTH_ARROW' (21.19,14.61) -> (21.19,14.92) len=0.31
LINE   h=21491 layer='BLOCK_NORTH_ARROW' (21.19,14.61) -> (21.19,14.84) len=0.23
LINE   h=21492 layer='BLOCK_NORTH_ARROW' (21.18,14.61) -> (21.18,14.77) len=0.16
LINE   h=21493 layer='BLOCK_NORTH_ARROW' (21.26,14.60) -> (21.26,14.94) len=0.34
LINE   h=21494 layer='BLOCK_NORTH_ARROW' (21.27,14.59) -> (21.27,14.94) len=0.35
LINE   h=21495 layer='BLOCK_NORTH_ARROW' (21.27,14.59) -> (21.27,14.94) len=0.35
LINE   h=21496 layer='BLOCK_NORTH_ARROW' (21.28,14.59) -> (21.28,14.94) len=0.36
LINE   h=21497 layer='BLOCK_NORTH_ARROW' (21.28,14.58) -> (21.28,14.84) len=0.26
LINE   h=21498 layer='BLOCK_NORTH_ARROW' (21.29,14.58) -> (21.29,14.83) len=0.26
LINE   h=21499 layer='BLOCK_NORTH_ARROW' (21.30,14.57) -> (21.30,14.82) len=0.25
LINE   h=2149A layer='BLOCK_NORTH_ARROW' (21.30,14.56) -> (21.30,14.82) len=0.25
OTHER  h=2149B Arc layer='BLOCK_NORTH_ARROW'
LINE   h=2149C layer='BLOCK_NORTH_ARROW' (21.31,14.56) -> (21.31,14.36) len=0.20
LINE   h=2149D layer='BLOCK_NORTH_ARROW' (21.17,14.61) -> (21.17,14.69) len=0.08
LINE   h=2149E layer='BLOCK_NORTH_ARROW' (21.17,14.61) -> (21.17,14.61) len=0.00
OTHER  h=2149F Polyline2d layer='BLOCK_NORTH_ARROW'
OTHER  h=214AE Polyline2d layer='BLOCK_NORTH_ARROW'
LINE   h=214BF layer='BLOCK_NORTH_ARROW' (21.21,15.00) -> (21.21,15.16) len=0.15
LINE   h=214C0 layer='BLOCK_NORTH_ARROW' (21.21,15.00) -> (21.21,15.08) len=0.07
LINE   h=214C1 layer='BLOCK_NORTH_ARROW' (21.25,15.00) -> (21.25,15.22) len=0.22
LINE   h=214C2 layer='BLOCK_NORTH_ARROW' (21.26,15.00) -> (21.26,15.21) len=0.21
LINE   h=214C3 layer='BLOCK_NORTH_ARROW' (21.27,15.00) -> (21.27,15.20) len=0.20
LINE   h=214C4 layer='BLOCK_NORTH_ARROW' (21.27,15.01) -> (21.27,15.19) len=0.19
LINE   h=214C5 layer='BLOCK_NORTH_ARROW' (21.28,15.01) -> (21.28,15.18) len=0.18
LINE   h=214C6 layer='BLOCK_NORTH_ARROW' (21.28,15.01) -> (21.28,15.17) len=0.17
LINE   h=214C7 layer='BLOCK_NORTH_ARROW' (21.29,15.01) -> (21.29,15.17) len=0.16
LINE   h=214C8 layer='BLOCK_NORTH_ARROW' (21.30,15.01) -> (21.30,15.16) len=0.15
LINE   h=214C9 layer='BLOCK_NORTH_ARROW' (21.30,15.01) -> (21.30,15.15) len=0.14
OTHER  h=214CA Polyline2d layer='BLOCK_NORTH_ARROW'
LINE   h=214DB layer='BLOCK_NORTH_ARROW' (21.31,14.93) -> (21.31,14.82) len=0.11
LINE   h=214DC layer='BLOCK_NORTH_ARROW' (21.31,14.94) -> (21.31,14.93) len=0.01
LINE   h=214DD layer='BLOCK_NORTH_ARROW' (21.31,14.81) -> (21.31,14.77) len=0.04
LINE   h=214DE layer='BLOCK_NORTH_ARROW' (21.28,14.85) -> (21.28,14.94) len=0.10
LINE   h=214DF layer='BLOCK_NORTH_ARROW' (21.29,14.84) -> (21.29,14.94) len=0.10
LINE   h=214E0 layer='BLOCK_NORTH_ARROW' (21.30,14.83) -> (21.30,14.94) len=0.11
LINE   h=214E1 layer='BLOCK_NORTH_ARROW' (21.30,14.83) -> (21.30,14.94) len=0.12
LINE   h=214E2 layer='BLOCK_NORTH_ARROW' (21.24,15.49) -> (21.23,15.45) len=0.04
LINE   h=214E3 layer='BLOCK_NORTH_ARROW' (21.22,15.29) -> (21.22,15.24) len=0.05
LINE   h=214E4 layer='BLOCK_NORTH_ARROW' (21.28,15.23) -> (21.28,15.58) len=0.35
LINE   h=214E5 layer='BLOCK_NORTH_ARROW' (21.27,15.24) -> (21.27,15.57) len=0.33
LINE   h=214E6 layer='BLOCK_NORTH_ARROW' (21.27,15.26) -> (21.27,15.56) len=0.30
LINE   h=214E7 layer='BLOCK_NORTH_ARROW' (21.26,15.28) -> (21.26,15.55) len=0.27
LINE   h=214E8 layer='BLOCK_NORTH_ARROW' (21.25,15.29) -> (21.25,15.54) len=0.25
LINE   h=214E9 layer='BLOCK_NORTH_ARROW' (21.25,15.32) -> (21.25,15.52) len=0.20
LINE   h=214EA layer='BLOCK_NORTH_ARROW' (21.24,15.35) -> (21.24,15.50) len=0.15
LINE   h=214EB layer='BLOCK_NORTH_ARROW' (21.24,15.40) -> (21.24,15.42) len=0.02
LINE   h=214EC layer='BLOCK_NORTH_ARROW' (21.27,15.72) -> (21.27,15.94) len=0.22
LINE   h=214ED layer='BLOCK_NORTH_ARROW' (21.27,15.72) -> (21.27,15.86) len=0.14
LINE   h=214EE layer='BLOCK_NORTH_ARROW' (21.26,15.72) -> (21.26,15.78) len=0.06
LINE   h=214EF layer='BLOCK_NORTH_ARROW' (21.28,15.73) -> (21.28,16.10) len=0.37
LINE   h=214F0 layer='BLOCK_NORTH_ARROW' (21.28,15.73) -> (21.28,16.02) len=0.29
MTEXT h=214F2 layer='BLOCK_NOTES_FLOOD' at (18.70,5.25) th=0.055 w=2.90 box=2.90x0.42
   FLOOD NOTE: | THIS PROPERTY IS NOT LOCATED WITHIN A SPECIAL FLOOD HAZARD AREA (SFHA) AS SHOWN ON F.I.R.M. COMMUNITY PANEL NO. 13121C0338F, EFFECTIVE SEPTEMBER 18, 2013.
MTEXT h=214F3 layer='BLOCK_NOTES_FLOOD' at (18.70,7.27) th=0.059 w=2.64 box=2.64x1.87
   NOTE: PROPERTY LINES SHOWN ON THIS SURVEY/PLAT  REPRESENT PHYSICAL FIELD CONDITIONS BY EVIDENCE OF APPARENT POSSESSION (IRON PINS FOUND, OLD & ESTABLISHED FENCE LINES, OLD WALL LINES, SHRUB & HEDGE LINE, HOUSE LOCATIONS, ETC.) THEY MAY DIFFER AND BE IN CONTENT ...
DBTEXT h=214F4 layer='BLOCK_CLOSURE' at (19.23,3.91) th=0.057  >>> Call FREE
DBTEXT h=214F5 layer='BLOCK_CLOSURE' at (19.23,3.72) th=0.057  >>> 325-5000
DBTEXT h=214F6 layer='BLOCK_CLOSURE' at (18.68,4.01) th=0.076  >>> UTILITIES PROTECTION CENTER
DBTEXT h=214F7 layer='BLOCK_CLOSURE' at (19.22,3.58) th=0.057  >>> THROUGHOUT GEORGIA
DBTEXT h=214F8 layer='BLOCK_CLOSURE' at (19.23,3.81) th=0.057  >>> IN METRO ATLANTA
DBTEXT h=214F9 layer='BLOCK_CLOSURE' at (19.22,3.49) th=0.057  >>> 1-800-282-7411
DBTEXT h=214FA layer='BLOCK_CLOSURE' at (18.71,3.35) th=0.057  >>> THREE WORKING DAYS BEFORE YOU DIG
LINE   h=214FB layer='BLOCK_CLOSURE' (18.93,3.69) -> (18.93,3.64) len=0.05
LINE   h=214FC layer='BLOCK_CLOSURE' (18.94,3.64) -> (18.94,3.69) len=0.05
LINE   h=214FD layer='BLOCK_CLOSURE' (18.94,3.69) -> (18.92,3.69) len=0.03
OTHER  h=214FE Polyline layer='BLOCK_CLOSURE'
OTHER  h=214FF Polyline layer='BLOCK_CLOSURE'
OTHER  h=21500 Arc layer='BLOCK_CLOSURE'
LINE   h=21501 layer='BLOCK_CLOSURE' (18.96,3.69) -> (18.93,3.69) len=0.02
OTHER  h=21502 Solid layer='BLOCK_CLOSURE'
OTHER  h=21503 Solid layer='BLOCK_CLOSURE'
OTHER  h=21504 Solid layer='BLOCK_CLOSURE'
LINE   h=21505 layer='BLOCK_CLOSURE' (18.87,3.87) -> (18.92,3.87) len=0.05
LINE   h=21506 layer='BLOCK_CLOSURE' (18.92,3.87) -> (18.92,3.85) len=0.02
LINE   h=21507 layer='BLOCK_CLOSURE' (18.92,3.85) -> (18.90,3.84) len=0.03
LINE   h=21508 layer='BLOCK_CLOSURE' (18.98,3.84) -> (18.95,3.85) len=0.03
LINE   h=21509 layer='BLOCK_CLOSURE' (18.95,3.85) -> (18.95,3.87) len=0.02
LINE   h=2150A layer='BLOCK_CLOSURE' (18.87,3.86) -> (18.92,3.86) len=0.05
LINE   h=2150B layer='BLOCK_CLOSURE' (18.79,3.86) -> (19.04,3.59) len=0.37
LINE   h=2150C layer='BLOCK_CLOSURE' (18.77,3.84) -> (19.02,3.57) len=0.37
OTHER  h=2150D Solid layer='BLOCK_CLOSURE'
OTHER  h=2150E Polyline2d layer='BLOCK_CLOSURE'
OTHER  h=2151F Polyline2d layer='BLOCK_CLOSURE'
OTHER  h=21530 Polyline layer='BLOCK_CLOSURE'
OTHER  h=21531 Polyline layer='BLOCK_CLOSURE'
MTEXT h=21532 layer='BLOCK_CLOSURE' at (18.69,4.84) th=0.080 w=2.87 box=2.87x0.85
   FIELD CLOSURE=1'IN 20,000+  | ANGLE POINT ERROR=< 03"  | EQUIPMENT USED=GPS/TOTAL STATION  | ADJUSTMENT METHOD=COMPASS RULE | PLAT CLOSURE=1'IN 100,000+
OTHER  h=21533 Polyline layer='SS-BOUNDARY CYAN'
OTHER  h=21534 Viewport layer='BLOCK_TB2'
OTHER  h=21537 BlockReference layer='SS-BOUNDARY'
DBTEXT h=21544 layer='BLOCK_CLOSURE' at (8.48,0.53) th=0.057  >>> VICINITY MAP (NOT TO SCALE)
OTHER  h=222EB BlockReference layer='SS-BOUNDARY LAND LOT'
MTEXT h=22426 layer='C-ANNO-CERT' at (11.58,16.25) th=0.080 w=6.60 box=6.60x0.10
   SURVEYOR'S CERTIFICATE
MTEXT h=22427 layer='C-ANNO-CERT' at (11.58,15.98) th=0.080 w=6.60 box=6.60x1.49
   It is hereby certified that this Boundary Line Adjustment / Recombination Plat is true and correct and was prepared from an actual survey of the property, made by me or under my supervision; that all monuments shown hereon actually exist, or are marked as "Fut ...
MTEXT h=22428 layer='C-ANNO-CERT' at (11.58,13.97) th=0.080 w=6.60 box=6.60x0.11
   G. L. Sawhney, Registered Georgia Land Surveyor No. 2547
MTEXT h=22429 layer='C-ANNO-CERT' at (11.58,13.66) th=0.080 w=6.60 box=6.60x0.10
   OWNER'S ACKNOWLEDGEMENT
MTEXT h=2242A layer='C-ANNO-CERT' at (11.58,13.39) th=0.080 w=6.60 box=6.60x0.35
   STATE OF GEORGIA | CITY OF SOUTH FULTON | FULTON COUNTY
MTEXT h=2242B layer='C-ANNO-CERT' at (11.58,12.85) th=0.080 w=6.60 box=6.60x0.91
   The owner of record of the land shown on this plat and whose name is subscribed thereto, in person or through a duly authorized agent, hereby acknowledges that this plat was made from an actual survey, dedicates to the public for use forever those water and se ...
MTEXT h=2242C layer='C-ANNO-CERT' at (11.73,11.74) th=0.080 w=2.40 box=2.40x0.08
   Public Streets
MTEXT h=2242D layer='C-ANNO-CERT' at (14.18,11.74) th=0.080 w=0.40 box=0.40x0.08
   0
MTEXT h=2242E layer='C-ANNO-CERT' at (14.53,11.74) th=0.080 w=0.80 box=0.80x0.08
   acres
MTEXT h=2242F layer='C-ANNO-CERT' at (11.73,11.61) th=0.080 w=2.40 box=2.40x0.08
   Public Sewer Easements
MTEXT h=22430 layer='C-ANNO-CERT' at (14.18,11.61) th=0.080 w=0.40 box=0.40x0.08
   0
MTEXT h=22431 layer='C-ANNO-CERT' at (14.53,11.61) th=0.080 w=0.80 box=0.80x0.08
   acres
MTEXT h=22432 layer='C-ANNO-CERT' at (11.73,11.47) th=0.080 w=2.40 box=2.40x0.11
   Public Drainage Easements
MTEXT h=22433 layer='C-ANNO-CERT' at (14.18,11.47) th=0.080 w=0.40 box=0.40x0.08
   0
MTEXT h=22434 layer='C-ANNO-CERT' at (14.53,11.47) th=0.080 w=0.80 box=0.80x0.08
   acres
MTEXT h=22435 layer='C-ANNO-CERT' at (11.73,11.34) th=0.080 w=2.40 box=2.40x0.12
   Public Parks/Open Space
MTEXT h=22436 layer='C-ANNO-CERT' at (14.18,11.34) th=0.080 w=0.40 box=0.40x0.08
   0
MTEXT h=22437 layer='C-ANNO-CERT' at (14.53,11.34) th=0.080 w=0.80 box=0.80x0.08
   acres
MTEXT h=22438 layer='C-ANNO-CERT' at (11.58,10.79) th=0.080 w=2.60 box=2.60x0.11
   Typed Name of Subdivider
MTEXT h=22439 layer='C-ANNO-CERT' at (15.13,10.79) th=0.080 w=2.60 box=2.60x0.11
   Typed Name of Owner of Record
MTEXT h=2243A layer='C-ANNO-CERT' at (11.58,10.23) th=0.080 w=2.60 box=2.60x0.11
   Signature of Subdivider
MTEXT h=2243B layer='C-ANNO-CERT' at (15.13,10.23) th=0.080 w=2.60 box=2.60x0.11
   Signature of Owner of Record
MTEXT h=2243D layer='C-ANNO-CERT' at (15.13,9.83) th=0.080 w=2.60 box=2.60x0.08
   Date
MTEXT h=2243F layer='C-ANNO-CERT' at (11.59,6.45) th=0.080 w=6.60 box=6.60x0.08
   MINOR SUBDIVISION PLAT APPROVAL
MTEXT h=22440 layer='C-ANNO-CERT' at (11.59,6.18) th=0.080 w=6.60 box=6.60x0.48
   The Director of the Community Development and Regulatory Affairs Department of the City of South Fulton, Georgia, certifies that this plat complies with the City of South Fulton Zoning Resolution, Conditions of Zoning, and the City of South Fulton Subdivision  ...
MTEXT h=22441 layer='C-ANNO-CERT' at (11.59,5.34) th=0.080 w=4.00 box=4.00x0.11
   For the Director, Community Development Services
MTEXT h=22442 layer='C-ANNO-CERT' at (15.79,5.34) th=0.080 w=1.80 box=1.80x0.08
   Date
MTEXT h=22443 layer='C-ANNO-CERT' at (11.58,9.52) th=0.080 w=6.60 box=6.60x0.08
   FULTON COUNTY HEALTH DEPARTMENT
MTEXT h=22444 layer='C-ANNO-CERT' at (11.58,9.25) th=0.080 w=6.60 box=6.60x0.51
   This subdivision, as shown, is approved upon the condition that sewage disposal and water supply facilities are in compliance with Chapter 34, Articles IV and XI, Sewage Disposal and Drinking Water Supply of the Fulton County Health Department regulations and  ...
MTEXT h=22445 layer='C-ANNO-CERT' at (11.58,8.65) th=0.080 w=3.30 box=3.30x0.08
   WATER SUPPLY
MTEXT h=22446 layer='C-ANNO-CERT' at (15.13,8.65) th=0.080 w=3.30 box=3.30x0.08
   SEWAGE DISPOSAL
MTEXT h=22447 layer='C-ANNO-CERT' at (11.58,8.52) th=0.080 w=3.30 box=3.30x0.12
   (   ) Public Water Supply
MTEXT h=22448 layer='C-ANNO-CERT' at (15.13,8.52) th=0.080 w=3.30 box=3.30x0.12
   (   ) Public Sanitary
MTEXT h=22449 layer='C-ANNO-CERT' at (11.58,8.38) th=0.080 w=3.30 box=3.30x0.12
   (   ) Individual Water Supplies
MTEXT h=2244A layer='C-ANNO-CERT' at (15.13,8.38) th=0.080 w=3.30 box=3.30x0.12
   (   ) Individual Onsite Sewage
MTEXT h=2244B layer='C-ANNO-CERT' at (11.58,8.11) th=0.080 w=3.30 box=3.30x0.12
   Service Requirements - S/D Type
MTEXT h=2244C layer='C-ANNO-CERT' at (15.13,8.11) th=0.080 w=3.30 box=3.30x0.12
   Service Requirements - S/D Type
MTEXT h=2244D layer='C-ANNO-CERT' at (11.58,7.98) th=0.080 w=3.30 box=3.30x0.12
   (   ) Type "A"      (   ) Type "B"
MTEXT h=2244E layer='C-ANNO-CERT' at (15.13,7.98) th=0.080 w=3.30 box=3.30x0.12
   (   ) Type "A"   (   ) Type "B"
MTEXT h=2244F layer='C-ANNO-CERT' at (15.13,7.84) th=0.080 w=3.30 box=3.30x0.12
   (   ) Type "C"   (   ) Type "D"
MTEXT h=22451 layer='C-ANNO-CERT' at (15.13,7.22) th=0.080 w=3.00 box=3.00x0.11
   Fulton County Health Department
MTEXT h=22452 layer='C-ANNO-CERT' at (11.58,6.82) th=0.080 w=2.40 box=2.40x0.08
   Revision Date
MTEXT h=22453 layer='C-ANNO-CERT' at (15.13,6.82) th=0.080 w=3.00 box=3.00x0.11
   Fulton County Health Department
LINE   h=22454 layer='C-ANNO-CERT-LINE' (11.58,14.11) -> (14.98,14.11) len=3.40
LINE   h=22455 layer='C-ANNO-CERT-LINE' (11.58,10.83) -> (14.13,10.83) len=2.55
LINE   h=22456 layer='C-ANNO-CERT-LINE' (15.13,10.83) -> (17.68,10.83) len=2.55
LINE   h=22457 layer='C-ANNO-CERT-LINE' (11.58,10.28) -> (14.13,10.28) len=2.55
LINE   h=22458 layer='C-ANNO-CERT-LINE' (15.13,10.28) -> (17.68,10.28) len=2.55
LINE   h=22459 layer='C-ANNO-CERT-LINE' (11.58,9.88) -> (14.13,9.88) len=2.55
LINE   h=2245A layer='C-ANNO-CERT-LINE' (15.13,9.88) -> (17.68,9.88) len=2.55
LINE   h=2245B layer='C-ANNO-CERT-LINE' (11.59,5.38) -> (15.49,5.38) len=3.90
LINE   h=2245C layer='C-ANNO-CERT-LINE' (15.79,5.38) -> (17.54,5.38) len=1.75
LINE   h=2245D layer='C-ANNO-CERT-LINE' (11.58,7.28) -> (13.78,7.28) len=2.20
LINE   h=2245E layer='C-ANNO-CERT-LINE' (15.13,7.28) -> (18.03,7.28) len=2.90
LINE   h=2245F layer='C-ANNO-CERT-LINE' (11.58,6.88) -> (13.78,6.88) len=2.20
LINE   h=22460 layer='C-ANNO-CERT-LINE' (15.13,6.88) -> (18.03,6.88) len=2.90
MTEXT h=22481 layer='C-ANNO-CERT' at (11.58,9.83) th=0.080 w=2.60 box=2.60x0.08
   Date
MTEXT h=2248A layer='C-ANNO-CERT' at (11.58,10.94) th=0.080 w=2.60 box=2.60x0.11
   Typed Name of Subdivider
MTEXT h=2248B layer='C-ANNO-CERT' at (15.13,10.94) th=0.080 w=2.60 box=2.60x0.11
   Typed Name of Owner of Record
MTEXT h=2249B layer='C-ANNO-CERT' at (11.58,7.24) th=0.080 w=2.40 box=2.40x0.08
   Revision Date
MTEXT h=224B0 layer='SS-BOUNDARY LAND LOT' at (11.70,15.19) th=0.080 w=0.58 box=0.58x0.10
   100,000+
counts: MText=51 DBText=9 Line=116 other=26

Notes

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

No notes yet.