Degrees minutes second!!

Degrees minutes second!!

Anonymous
Not applicable
1,414 Views
6 Replies
Message 1 of 7

Degrees minutes second!!

Anonymous
Not applicable

Does anyone know if there is a software or online website where If I enter degrees minutes seconds for surveying it will draw abearing for me

0 Likes
1,415 Views
6 Replies
Replies (6)
Message 2 of 7

Anonymous
Not applicable

Have you tried command:units and changing your Angular type to Surveyor's Units?

0 Likes
Message 3 of 7

pbejse
Mentor
Mentor

Welcome to the forum reva1991.

 

Not sure what you need but the native Line/Pline command accepts Degrees/Min/Sec input  regardless of Angular units. @1200<N12d12'12"E 

 

That is if we are talking about Autocad. Please tell us more.

 

 

 

0 Likes
Message 4 of 7

Anonymous
Not applicable

Thanks for the quick reply. I think I was unclear. Okay I'm working on land surveying and I have to calc. all bearings and do all the calc for a compass rule and I'm new to all this. So i needed a software to help me out check my calc. I tried excel but didnt work!! I dont know if that makes more sense but I attchaed a pic of the land. 

0 Likes
Message 5 of 7

Anonymous
Not applicable

Changing units i for going to a site plan and back is too much work.

 

Here is something i developed back in release 12 see if it wroks for you.

 

(DEFUN C:LBA ()(GTVRS)(SETQ GNA 3.1459)(prompt "\nLine by direction")

(while (setq pt1 (GETPOINT "Starting poinC: "))
 (setq pt2 pt1 dist1 0.0)(setvar "osmode" 0)
  (while (/= GNA NIL)(SVRANG)
  (setq dist  (Getdist "Distance: ")
    dist1 (+ dist1 dist)
    pt3   (polar pt2 GNA dist)
    pt3   (list (car pt3) (cadr pt3)))(command "_.line" pt2 PT3 "")
  (setq pt2 pt3))(command "")
 (if (not (zerop dist1))(print "\nPerimeter = %s" (rtos dist1 2))))

(stvrS)(setq pt1 nil pt2 nil pt3 nil ang nil dist nil dist1 nil)(princ))

(DEFUN CALC ()
  (SETQ ANG (+ DG (/ (+ MN (/ SC 60)) 60)))
  (COND ((= DR "N")
     (IF (= RD "E") (SETQ GNL (- 90 ANG)))
     (IF (= RD "W") (SETQ GNL (+ 90 ANG))))
    ((= DR "S")
     (IF (= RD "E") (SETQ GNL (+ 270 ANG)))
     (IF (= RD "W") (SETQ GNL (- 270 ANG)))))
  (PROMPT (STRCAT "\n\nIs this OK: " (RTOS ANG 2 8)))
  (SETQ GNA (DTR GNL)))

(DEFUN SVRANG ()
  (COMMAND "AUPREC" "8" "AUNITS" "0")(INITGET "North South")
  (SETQ  DR (GETKWORD "\nNorth/South/<North> : ")
     DG (GETREAL  "  Degrees : ")         MN (GETREAL "  Minutes : ")
     SC (GETREAL  "  Seconds : "));       (  DS (GETREAL "\nDistance : "))
(INITGET "East West")(SETQ  RD (GETKWORD "\nEast/West/<West> : "))
(IF (= "South" DR)(SETQ DR "S")(SETQ DR "N"))
(IF (= "East" RD)(SETQ RD "E")(SETQ RD "W"))(CALC))

 

(defun dtr (a) (* pi (/ a 180.0)))(DEFUN RTD (a) (* 180.0 (/ A PI)))

 

Hope this helps...

Matthew

0 Likes
Message 6 of 7

Anonymous
Not applicable

Unfortunately no but I was able to switch to radians and work with that. thank you for all the help though 

0 Likes
Message 7 of 7

Jonathan3891
Advisor
Advisor
Bais Autocad will allow you to draw a line by bearing and distance.

You have to enter the bearing as 0d00'00"
d= degrees
'= minutes
"=seconds

Jonathan Norton
Blog | Linkedin
0 Likes