3d 2018 //top\\ - Import Kml To Autocad Civil
// Parse KML var kmlData = ParseKML(filename);
var sourceCs = "LL84"; // EPSG:4326 alias in Civil 3D var transform = CoordinateSystemService.CreateTransform(sourceCs, targetCsCode); double x, y; transform.TransformPoint(lon, lat, out x, out y); // note: lon → X, lat → Y return new Point2d(x, y); import kml to autocad civil 3d 2018
COGO Point:
using (Transaction tr = db.TransactionManager.StartTransaction()) // Parse KML var kmlData = ParseKML(filename); var