Community
Civil 3D Forum
Welcome to Autodesk’s Civil 3D Forums. Share your knowledge, ask questions, and explore popular AutoCAD Civil 3D topics.
cancel
Showing results for 
Show  only  | Search instead for 
Did you mean: 

COGO points

6 REPLIES 6
Reply
Message 1 of 7
jabir16
603 Views, 6 Replies

COGO points

I have points as reference blocks I want to convert them in to autocad points so than to convert them to Cogo points.how to covert block refernc point to autocad points
6 REPLIES 6
Message 2 of 7
Pointdump
in reply to: jabir16

Jabir16,

 

I'm not sure what you mean by "block reference points", but if you mean points from LDD or Softdesk or even Vanilla, you can convert them to COGO Points like this:

 

Convert.png

 

Dave

Dave Stoll
Las Vegas, Nevada

EESignature

64GB DDR4 2400MHz ECC SoDIMM / 1TB SSD
NVIDIA Quadro P5000 16GB
Windows 10 Pro 64 / Civil 3D 2024
Message 3 of 7
KirkNoonan
in reply to: jabir16

If your blocks are inserted with the insertion point at the point location, then the easiest thing would probably to genereate a csv file by means of a data extraction. It is pretty simple - just type 'dataextraction' at the command prompt and follw the instructions. You can then import the csv file int oyour drawing to get C3D points.

Message 4 of 7
tcorey
in reply to: jabir16

This code example will ask for a selection set and will place an AutoCAD Point at the insertion coordinates of any block it finds in the selection set. Other objects will be ignored. It does not test for the difference between xreferences and normal blocks, so you might want to avoid picking xref's.

 

Tim

 

(vl-load-com) 
(prompt "\nPick blocks to convert to AutoCAD Points: ") (setq ss (ssget) len (sslength ss) ctr 0) (while (< ctr len) (setq blk (ssname ss ctr)) (if (= (cdr (assoc 0 (entget blk))) "INSERT") (progn (setq ins (cdr (assoc 10 (entget blk)))) (vl-cmdf "point" ins) );end progn );end if (setq ctr (1+ ctr)) );end while
(setq ss nil blk nil ins nil len nil ctr nil) (princ)

 



Tim Corey
MicroCAD Training and Consulting, Inc.
Redding, CA
Autodesk Gold Reseller

New knowledge is the most valuable commodity on earth. -- Kurt Vonnegut
Message 5 of 7
troma
in reply to: jabir16

Another way:
If all the blocks are the same block:
BEDIT the block, place an acad point at 0, 0 within the block. Save & exit the editor. Now explode all your blocks, and you'll have acad points at each location.

Mark Green

Working on Civil 3D in Canada

Message 6 of 7
jabir16
in reply to: Pointdump

yes but the problem is to first convert blocks into cogo and then follow the same as you told..

Message 7 of 7
Jay_B
in reply to: jabir16

Can you post the drawing or even a portion of the drawing here (that contains some of these blocks) so someone can take a look?
C3D 2018.1
C3D 2016 SP4

Win 7 Professional 64 Bit

Can't find what you're looking for? Ask the community or share your knowledge.

Post to forums  

Rail Community


 

Autodesk Design & Make Report