C3D-CERTS2 · Place plat certificate blocks done
Surveyor's Certificate (OCGA 15-6-67 + closure line), Owner's Acknowledgement (acreages 0 for the BLA), City of South Fulton Director approval, and Fulton County Health Dept block. Four separate MTexts, 0.08in, paper space 22X17 C, layer C-ANNO-CERT.
C# payload
// Plat certificate blocks for job 260619 (Lot Re-Configuration / BLA, City of South Fulton).
// Each cert is a SEPARATE MText so it can be moved independently. Paper space, sheet inches,
// 0.08" text on layer C-ANNO-CERT. BLA has no public dedication so acreage lines are 0.
// Host owns Tx; host regens after commit.
const string LAYOUT = "22X17 C", LAYER = "C-ANNO-CERT";
const double H = 0.08;
var blocks = new (string name, double x, double y, double w, string txt)[] {
("SURVCERT", 0.75, 15.9, 6.6, @"SURVEYOR'S CERTIFICATE\P\PIt 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 ""Future"", and their location, size, type and material is correctly shown.\P\PThis plat has been calculated for closure and is found to be accurate within one foot in __________ feet.\P\PAs required by subsection (d) of O.C.G.A. Section 15-6-67, this plat has been prepared by a land surveyor and approved by all applicable local jurisdictions for recording as evidenced by approval certificates, signatures, stamps, or statements hereon.\P\P\P________________________________________\PG. L. Sawhney, Registered Georgia Land Surveyor No. 2547\P(affix seal)"),
("OWNERACK", 0.75, 12.6, 6.6, @"OWNER'S ACKNOWLEDGEMENT\P\PSTATE OF GEORGIA\PCITY OF SOUTH FULTON\PFULTON COUNTY\P\PThe 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 sewer improvements constructed in accordance with this plat that are specifically labeled as dedicated to the public, and dedicates to the City of South Fulton, the complete ownership and use of all public streets and dedicated right-of-way specifically labeled as public streets and dedicated right-of-way, and dedicates to the use of the public forever the following:\P\PPublic Streets 0 acres\PPublic Sewer Easements 0 acres\PPublic Drainage Easements 0 acres\PPublic Parks/Open Space 0 acres\P\P\P______________________________ ______________________________\PTyped Name of Subdivider Typed Name of Owner of Record\P\P______________________________ ______________________________\PSignature of Subdivider Signature of Owner of Record\P\P______________________________ ______________________________\PDate Date\P\P(All owners must sign the original in permanent type BLACK ink prior to submittal. Ballpoint and felt pens are not acceptable.)"),
("DIRAPPR", 0.75, 7.6, 6.6, @"MINOR SUBDIVISION PLAT APPROVAL\P\PThe 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 Regulations as amended.\P\P\P_________________________________________ ________________\PFor the Director, Community Development Services Date"),
("HEALTHDEPT", 0.75, 5.7, 6.6, @"FULTON COUNTY HEALTH DEPARTMENT\P\PThis 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 in accordance with the requirements below:\P\PWATER SUPPLY SEWAGE DISPOSAL\P( ) Public Water Supply ( ) Public Sanitary\P( ) Individual Water Supplies ( ) Individual Onsite Sewage\P\PService Requirements - S/D Type Service Requirements - S/D Type\P( ) Type ""A"" ( ) Type ""B"" ( ) Type ""A"" ( ) Type ""B"" ( ) Type ""C"" ( ) Type ""D""\P\P\P_________________________ _______________________________\PDate Fulton County Health Department\P\P_________________________ _______________________________\PRevision Date Fulton County Health Department")
};
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.ForWrite);
EnsureLayer(LAYER, 7);
int n = 0;
foreach (var b in blocks)
{
var mt = new MText {
Location = new Point3d(b.x, b.y, 0.0),
Contents = b.txt,
TextHeight = H,
Width = b.w,
Attachment = AttachmentPoint.TopLeft,
LineSpacingFactor = 1.0,
};
mt.Layer = LAYER;
ps.AppendEntity(mt);
Tx.AddNewlyCreatedDBObject(mt, true);
var e = mt.GeometricExtents;
Log(" " + b.name + " at (" + b.x + "," + b.y + ") height=" + (e.MaxPoint.Y - e.MinPoint.Y).ToString("F2") + "in bottom=" + e.MinPoint.Y.ToString("F2") + " handle=" + mt.Handle);
n++;
}
Log("Placed " + n + " certificate blocks on '" + LAYOUT + "' layer '" + LAYER + "', each a separate MText.");
Result
Log
SURVCERT at (0.75,15.9) height=2.45in bottom=13.45 handle=223D4 OWNERACK at (0.75,12.6) height=4.17in bottom=8.43 handle=223D5 DIRAPPR at (0.75,7.6) height=1.31in bottom=6.29 handle=223D6 HEALTHDEPT at (0.75,5.7) height=2.85in bottom=2.85 handle=223D7 Placed 4 certificate blocks on '22X17 C' layer 'C-ANNO-CERT', each a separate MText.
Notes
What worked, what didn't, job-specific gotchas — flagged notes feed the recipes.
No notes yet.