<?xml version="1.0" encoding="UTF-8"?>
<rss xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:taxo="http://purl.org/rss/1.0/modules/taxonomy/" version="2.0">
  <channel>
    <title>topic Re: Coordinate List? in Project data &amp; BIM</title>
    <link>https://community.graphisoft.com/t5/Project-data-BIM/Coordinate-List/m-p/12424#M14136</link>
    <description>Also check &lt;A href="http://archicad-talk.graphisoft.com/viewtopic.php?p=10598#10598" target="_blank"&gt;&lt;LINK_TEXT text="http://archicad-talk.graphisoft.com/vie ... 0598#10598"&gt;http://archicad-talk.graphisoft.com/viewtopic.php?p=10598#10598&lt;/LINK_TEXT&gt;&lt;/A&gt;</description>
    <pubDate>Tue, 23 Mar 2004 05:13:15 GMT</pubDate>
    <dc:creator>Djordje</dc:creator>
    <dc:date>2004-03-23T05:13:15Z</dc:date>
    <item>
      <title>Coordinate List?</title>
      <link>https://community.graphisoft.com/t5/Project-data-BIM/Coordinate-List/m-p/12420#M14132</link>
      <description>&lt;DIV class="actalk-migrated-content"&gt;Is there any way to generate a txt. file consisting of a list of coordinates of any element? I want to produce a list of construction staking coordinate info. I have searched through the entire calculate menu to find some way to generate some x,y,z info of a hotspot,column,elevation dimension anything! No luck! I would be willing to pay for some help generating an object or GDL script to do this. Any help much appreciated!&lt;/DIV&gt;</description>
      <pubDate>Mon, 03 Feb 2025 16:14:31 GMT</pubDate>
      <guid>https://community.graphisoft.com/t5/Project-data-BIM/Coordinate-List/m-p/12420#M14132</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2025-02-03T16:14:31Z</dc:date>
    </item>
    <item>
      <title>Re: Coordinate List?</title>
      <link>https://community.graphisoft.com/t5/Project-data-BIM/Coordinate-List/m-p/12421#M14133</link>
      <description>This should let you get what you want, Mark.  If not, it lets me share yet another strange feature of ArchiCAD. &lt;E&gt;&lt;span class="lia-unicode-emoji" title=":winking_face:"&gt;😉&lt;/span&gt;&lt;/E&gt;&lt;BR /&gt;
&lt;BR /&gt;
The Special Menu has an option to save the contents of the 3D window as vertices, edges, and other primitives.  You are only interested in vertices:  the x, y and z coordinates of the corners of polygons.&lt;BR /&gt;
&lt;BR /&gt;
In the screenshot, I've drawn a slab and a column in metric ... because ArchiCAD operates internally in metric and the output is in metric ... so this was the easiest way for me to verify the numbers were right.  You'll have to convert to FFI of course.  &lt;BR /&gt;
&lt;BR /&gt;
Choose Save GDL from the Special Menu and GDL 3D as the type.&lt;BR /&gt;
&lt;BR /&gt;
Open the file and delete (or have software ignore) all lines other than the VERT lines.  (My column was .1m wide, 3m high, and sitting on top of a .5m high slab at a corner located at (2m, 0m).  The slab is 2m x 3m x .5m  All comes through nicely - even tabbed!)&lt;BR /&gt;
&lt;BR /&gt;
If you only want the x, y, z coordinates of certain locations, select just those 'marker' objects before generating the 3D ... and only their coordinates will be output.  If your marker is a cube shape with 8 vertices like the illustration, then if you always place the smallest x,y,z coordinate on your intended point, it would be easy to have a tiny program eliminate all of the other points, too.  Maybe a 3D hotspot would generate a single VERT ... I didn't spend any more time exploring.&lt;BR /&gt;
&lt;BR /&gt;
Interesting, huh?&lt;BR /&gt;
&lt;BR /&gt;
Karl</description>
      <pubDate>Fri, 19 Mar 2004 06:46:34 GMT</pubDate>
      <guid>https://community.graphisoft.com/t5/Project-data-BIM/Coordinate-List/m-p/12421#M14133</guid>
      <dc:creator>Karl Ottenstein</dc:creator>
      <dc:date>2004-03-19T06:46:34Z</dc:date>
    </item>
    <item>
      <title>Re: Coordinate List?</title>
      <link>https://community.graphisoft.com/t5/Project-data-BIM/Coordinate-List/m-p/12422#M14134</link>
      <description>Part 2.&lt;BR /&gt;
&lt;BR /&gt;
OK.  I couldn't resist the challenge.  Someone else may have a better solution.&lt;BR /&gt;
&lt;BR /&gt;
I wanted to make a 'marker object' that you could plop down at points that you wanted output.  For 2D, I just used a circle with crosshairs and a hotspot in the middle.  The 3D became tricky.  The easiest thing for output is for the 3D script to have nothing but a VERT 0, 0, 0 in it ... and then the output file would only have the desired coordinates.  But, this is invisible in the 3D window and wouldn't allow you to visually drag the marker up and down to snap it to vertical height.   So... I went for just a 3D line to allow 3D editing.&lt;BR /&gt;
&lt;BR /&gt;
To output your coordinates, use Find and Select to select all of these marker elements, then go to 3D and save as in the tip below.  The first coordinate of every pair is the coordinate that you want.  The second (top point of the line) can be discarded.&lt;BR /&gt;
&lt;BR /&gt;
2D script:&lt;BR /&gt;
---------------------&lt;BR /&gt;
HOTSPOT2 0, 0&lt;BR /&gt;
&lt;BR /&gt;
CIRCLE2 0, 0, A/2&lt;BR /&gt;
&lt;BR /&gt;
! Crosshairs&lt;BR /&gt;
LINE2 -A/2, 0, A/2, 0&lt;BR /&gt;
LINE2 0, -A/2, 0, A/2&lt;BR /&gt;
&lt;BR /&gt;
&lt;BR /&gt;
3D script:&lt;BR /&gt;
----------------------&lt;BR /&gt;
LIN_  0, 0, 0, 0, 0, 1&lt;BR /&gt;
&lt;BR /&gt;
&lt;BR /&gt;
Karl</description>
      <pubDate>Fri, 19 Mar 2004 07:17:49 GMT</pubDate>
      <guid>https://community.graphisoft.com/t5/Project-data-BIM/Coordinate-List/m-p/12422#M14134</guid>
      <dc:creator>Karl Ottenstein</dc:creator>
      <dc:date>2004-03-19T07:17:49Z</dc:date>
    </item>
    <item>
      <title>Re: Coordinate List?</title>
      <link>https://community.graphisoft.com/t5/Project-data-BIM/Coordinate-List/m-p/12423#M14135</link>
      <description>There is also an xyz locator object which can be downloaded from &lt;A href="http://www.archiradar.com/eng/objects/al2d02.htm" target="_blank"&gt;http://www.archiradar.com/eng/objects/al2d02.htm&lt;/A&gt;&lt;BR /&gt;
&lt;BR /&gt;
HTH&lt;BR /&gt;
Petros</description>
      <pubDate>Fri, 19 Mar 2004 07:38:21 GMT</pubDate>
      <guid>https://community.graphisoft.com/t5/Project-data-BIM/Coordinate-List/m-p/12423#M14135</guid>
      <dc:creator>Petros Ioannou</dc:creator>
      <dc:date>2004-03-19T07:38:21Z</dc:date>
    </item>
    <item>
      <title>Re: Coordinate List?</title>
      <link>https://community.graphisoft.com/t5/Project-data-BIM/Coordinate-List/m-p/12424#M14136</link>
      <description>Also check &lt;A href="http://archicad-talk.graphisoft.com/viewtopic.php?p=10598#10598" target="_blank"&gt;&lt;LINK_TEXT text="http://archicad-talk.graphisoft.com/vie ... 0598#10598"&gt;http://archicad-talk.graphisoft.com/viewtopic.php?p=10598#10598&lt;/LINK_TEXT&gt;&lt;/A&gt;</description>
      <pubDate>Tue, 23 Mar 2004 05:13:15 GMT</pubDate>
      <guid>https://community.graphisoft.com/t5/Project-data-BIM/Coordinate-List/m-p/12424#M14136</guid>
      <dc:creator>Djordje</dc:creator>
      <dc:date>2004-03-23T05:13:15Z</dc:date>
    </item>
  </channel>
</rss>

