Author Topic: Northings and Eastings  (Read 5942 times)

0 Members and 1 Guest are viewing this topic.

PHX cadie

  • Water Moccasin
  • Posts: 1902
Northings and Eastings
« on: February 03, 2012, 03:17:57 PM »
I have totally forgotten how to get the Northing/Easting (X amd Y,) values, sim to ID, but in text.

I don't think its a lisp, does anyone know the command?

Thx's
Acad 2013 and XM
Back when High Tech meant you had an adjustable triangle

Mark

  • Custom Title
  • Seagull
  • Posts: 28762
Re: Northings and Eastings
« Reply #1 on: February 03, 2012, 03:23:07 PM »
Not sure I understand what you want. ID will display the X and Y for me.

Here's an old program that does it too.
Code: [Select]
;;; display coordinates and elevation
;;; output looks like this
;;; Pick Point... N=1267857.385 E=590288.382 ELEV=0.00  590288.382,1267857.385
(defun C:CDD (/ p1)
  (while
    (setq p1 (getpoint "\nPick Point... "))
    (progn
      (prompt
        (strcat
          "N="(rtos (cadr p1)2 3)" "
          "E="(rtos (car p1)2 3)" "
          "ELEV="(rtos (caddr p1)2 2)"  "
          (rtos (car p1)2 3)","(rtos (cadr p1)2 3)
          )
        ); prin1
      ); progn
    )
  (princ)
  ); defun
TheSwamp.org  (serving the CAD community since 2003)

Chris

  • Swamp Rat
  • Posts: 548
Re: Northings and Eastings
« Reply #2 on: February 03, 2012, 03:32:09 PM »
you can also use a block with text containing fields for the northing and easting information.
Christopher T. Cowgill, P.E.
AEC Collection 2020 (C3D)
Win 10

PHX cadie

  • Water Moccasin
  • Posts: 1902
Re: Northings and Eastings
« Reply #3 on: February 03, 2012, 03:58:10 PM »
I was hopeing to be vag and not to admit a failing memory  :-D

In an old dwg I have text:

N=1234.56
E=1234.56
Z=0.00


Apparently I had a way to get the X and Y in text. There must have been a command, I doubt that I copied the XY values then pasted in text, but its possible (?)
Acad 2013 and XM
Back when High Tech meant you had an adjustable triangle

Chris

  • Swamp Rat
  • Posts: 548
Re: Northings and Eastings
« Reply #4 on: February 06, 2012, 08:31:35 AM »
would this help?
Christopher T. Cowgill, P.E.
AEC Collection 2020 (C3D)
Win 10

PHX cadie

  • Water Moccasin
  • Posts: 1902
Re: Northings and Eastings
« Reply #5 on: February 07, 2012, 12:59:26 PM »
I was thinking there was a vanilla Acad command.

Thx's All
Acad 2013 and XM
Back when High Tech meant you had an adjustable triangle

alanjt

  • Needs a day job
  • Posts: 5352
  • Standby for witty remark...
Re: Northings and Eastings
« Reply #6 on: February 07, 2012, 03:25:32 PM »
The ID command.

Civil 3D 2019 ~ Windohz 7 64bit
Dropbox

PHX cadie

  • Water Moccasin
  • Posts: 1902
Re: Northings and Eastings
« Reply #7 on: October 10, 2012, 12:03:14 PM »
(Posting in case some may find useful)

Finally got around to fixing what I couldn't explain:

a field text showing either the x or the y postion of the defpoints block to the left of the table.

Move the defpoints block and do a regen to update the N/E 'ings in the table
Acad 2013 and XM
Back when High Tech meant you had an adjustable triangle

JAtherley

  • Guest
Re: Northings and Eastings
« Reply #8 on: October 11, 2012, 12:37:10 PM »
If using civil 3D you can set up a note label and style to label Northings and Eastings