In AutoCAD, finding the Easting (E) and Northing (N) coordinates of a point is straightforward. You can use built-in tools or create an AutoLISP routine for custom functionality. Here are the methods:
Using AutoCAD's Built-In Tools
ID Point Command:
- Type
ID
at the command line and pressEnter
. - Click on the point in the drawing.
- AutoCAD will display the coordinates in the command line.
- Type
Properties Palette:
- Select the object or point.
- Press
Ctrl+1
to open the Properties Palette. - The coordinates will be displayed under the Geometry section.
Coordinate Display on Status Bar:
- Move your cursor over the point of interest.
- Look at the coordinates displayed on the status bar at the bottom of the AutoCAD window.
Using an AutoLISP Routine
If you need to frequently obtain coordinates and want a custom solution, you can use AutoLISP as follows:
Load the AutoLISP File:
- Type
APPLOAD
at the command line and pressEnter
. - Browse to the saved
.lsp
file and load it.
- Type
Run the Command:
- Type
COOR
at the command line and pressEnter
. - Select a point in the drawing.
- The coordinates will be displayed in the command line.
- Type
This AutoLISP routine prompts the user to select a point and then prints the Easting and Northing coordinates to the command line.
0 Comments