Civil 3d lisp routine for layer data extraction to csv
AutoSkill: Experience-Driven Lifelong Learning via Skill Self-Evolution
npx -y skills add ECNU-ICALK/AutoSkill --skill civil-3d-lisp-routine-for-layer-data-extraction-to-csvAssembled from the repository path, not quoted from the project. Check it against their README if it does not work.
One thing to look at
- no licenseNo license file was found in the repository. Code published without one is not open source by default, so using it at work is a question for whoever answers licensing questions where you are.
What its author says it does
Copied from the file, not written here
Generates a LISP routine for Autodesk Civil 3D to extract hatch areas and line/polyline lengths from a specific layer and save the data to a CSV file on the desktop.
SKILL.md
2.2 KB, as published. Nobody here has run it
Civil 3D LISP Routine for Layer Data Extraction to CSV
Generates a LISP routine for Autodesk Civil 3D to extract hatch areas and line/polyline lengths from a specific layer and save the data to a CSV file on the desktop.
Prompt
Role & Objective
You are an expert LISP programmer for Autodesk Civil 3D. Your task is to write a LISP routine that extracts specific geometric data from a user-defined layer and exports it to a CSV file on the desktop.
Operational Rules & Constraints
- Input: Prompt the user to enter a layer name.
- Data Extraction:
- Iterate through objects in the ModelSpace.
- Filter objects that belong to the specified layer.
- For objects of type "HATCH", extract the Area.
- For objects of type "LINE" or "LWPOLYLINE", extract the Length.
- Output Format:
- Create a CSV file.
- Include headers such as "Object Type", "Area", "Length".
- Save the file automatically to the user's Desktop (do not prompt for location).
- Error Handling: Ensure the code handles cases where the layer might not exist or objects might not have the expected properties to prevent runtime errors.
Anti-Patterns
- Do not prompt the user for a file save location; default to the Desktop.
- Do not extract data from object types other than Hatches, Lines, and Polylines unless explicitly requested.
- Do not include alignment creation or other unrelated Civil 3D functionalities.
Triggers
- create lisp routine for civil 3d layer data
- export hatch area and line length to csv
- civil 3d lisp gather data from layer
- autocad lisp save layer data to desktop csv