Jump to content

N/E Coordinates


Recommended Posts

Hey guys and Gals,

The Problem: I am currently working on multiple drawings in NAD83 Coordinates, and I need to call out all of the standard things. Corners, and the like. Now, the problem is I am not finding any "Place Coordinate" command. (I am too used to Microstation) Anyway, So I was wondering if you guy/gals knew of any command that I could use that would automatically place coordinate readout text into the drawing, with a leader. I have thought about writing my own script for it, but frankly, that just seems like a whole lot of work for a problem that may already be solved.

 

Thanks,

Link to comment
Share on other sites

I think DIMORDINATE is what you are looking for.

I've seen several lisps that may help automate what you are trying to do. Try a search here for them...(I don't have any off hand..)

Link to comment
Share on other sites

I have thought about writing my own script for it, but frankly, that just seems like a whole lot of work for a problem that may already be solved.

 

Thanks,

 

lol, that's just too funny.

Link to comment
Share on other sites

(and (setq Point (getpoint "\nSpecify point: "))
    (setq Point (mapcar 'rtos (trans Point 1 0))
          Value (strcat "NORTHING: " (cadr Point) "\\P"
                        "EASTING: " (car Point) "\\P"
                        "ELEV.: " (caddr Point)
                        )
          )
    )

Link to comment
Share on other sites

Create a Point; then create 2 fields using the point as the Object Type and Position as the Property. Specify Y position for Northing and X position as the Easting. Under Additional Format you can specify prefixes, e.g. N: E:. then make it a block using the point as the insert point.

j1.JPG

Link to comment
Share on other sites

  • 4 weeks later...

i would like to preface this by saying that i have not had hardly any experience in autocad past simply drawing shapes and polylines...

 

i'm working on landscape construction documents for school and i was wondering how to set a particular point as 0,0 for the coordinate system so that i could base all my coordinates off of that beginning point. once i have that, how do i even dimension it to say:

N: 532' 6"

E: 401' 3"

 

I tried using directions above and could not format the text to read how i wanted it to...

Link to comment
Share on other sites

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.
Note: Your post will require moderator approval before it will be visible.

Guest
Unfortunately, your content contains terms that we do not allow. Please edit your content to remove the highlighted words below.
Reply to this topic...

×   Pasted as rich text.   Restore formatting

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

×
×
  • Create New...