Message 1 of 18
Not applicable
09-29-2019
08:18 PM
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report
I have a few drawing files that contain both point and line type geometry. I need to export this data into a PostgreSQL data base.
However, when extracting the line type geometry, only the first z value (first point of the line) is used for the remaining values for x and y.
Is there a way to extract all the values for the lines within the drawing file? Ideally I would want something that is similar to:
Line1 - ((X1, Y1, Z1) (X2, Y2, Z2) (Xn, Yn, Zn)) etc.
Line2 - ((X1, Y1, Z1) (X2, Y2, Z2) (Xn, Yn, Zn)) etc.
Alternatively, is there a way to import a CAD file into PostgreSQL so that all X,Y,Z values are imported?
Solved! Go to Solution.