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
IDat 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+1to 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
APPLOADat the command line and pressEnter. - Browse to the saved
.lspfile and load it.
- Type
Run the Command:
- Type
COORat 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.
%20and%20Northing%20(N.gif)
