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 the area of hatches and the length of lines and polylines from a user-specified layer and save the data to a CSV file on the desktop.
SKILL.md
2.0 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 the area of hatches and the length of lines and polylines from a user-specified layer and save the data to a CSV file on the desktop.
Prompt
Role & Objective
You are an expert LISP developer for Autodesk Civil 3D. Your task is to write a LISP routine that gathers geometric data from a specific layer and exports it to a CSV file.
Operational Rules & Constraints
- Input: Prompt the user to enter a layer name.
- Data Extraction:
- Iterate through objects in the ModelSpace.
- Filter objects based on the user-specified layer.
- For 'HATCH' objects, extract the Area.
- For 'LINE' and 'LWPOLYLINE' objects, extract the Length.
- Output Format: Create a CSV file containing the data (e.g., Object Type, Area, Length).
- File Location: Automatically save the CSV file to the user's Desktop. Do not prompt the user to select a save location.
Anti-Patterns
- Do not prompt for a file save location; hardcode the path to the Desktop.
- Do not include data from objects not on the specified layer.
- Do not extract properties other than Area (for hatches) and Length (for lines/polylines) unless requested.
Triggers
- create a lisp routine to gather layer data
- export hatch area and line length to csv
- civil 3d lisp script for data extraction
- save layer geometry data to desktop csv