<?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 World Coordinate Dimensions in Libraries &amp; objects</title>
    <link>https://community.graphisoft.com/t5/Libraries-objects/World-Coordinate-Dimensions/m-p/664456#M51222</link>
    <description>&lt;P&gt;I am having an issue when using the World Coordinate Dimensions object, I can get it to display the coordinates but is there a way to make the displayed coordinates have more than 2 decimal places shown in the seconds?&amp;nbsp;&lt;BR /&gt;&lt;BR /&gt;for example&lt;BR /&gt;E 175° 10' 47.80" which is currently displayed using the object and is accurate to approximately 308mm.&lt;BR /&gt;E 175° 10' 47.8045"&amp;nbsp; with 4 decimals is a better accuracy at approximately 3.8mm, 5 decimal places would be even better at 0.38mm but I understand the project location seems to be limited to 4 decimal places itself so that would be acceptable.&lt;BR /&gt;&lt;BR /&gt;Is there a way to get 4 decimal places displayed? This seems to be the same on version AC25 and AC26.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;FONT face="courier new,courier" color="grey"&gt;Operating system used: &lt;EM&gt;Windows 10&lt;/EM&gt;&lt;/FONT&gt;&lt;/P&gt;</description>
    <pubDate>Tue, 03 Jun 2025 04:00:37 GMT</pubDate>
    <dc:creator>LCarew</dc:creator>
    <dc:date>2025-06-03T04:00:37Z</dc:date>
    <item>
      <title>World Coordinate Dimensions</title>
      <link>https://community.graphisoft.com/t5/Libraries-objects/World-Coordinate-Dimensions/m-p/664456#M51222</link>
      <description>&lt;P&gt;I am having an issue when using the World Coordinate Dimensions object, I can get it to display the coordinates but is there a way to make the displayed coordinates have more than 2 decimal places shown in the seconds?&amp;nbsp;&lt;BR /&gt;&lt;BR /&gt;for example&lt;BR /&gt;E 175° 10' 47.80" which is currently displayed using the object and is accurate to approximately 308mm.&lt;BR /&gt;E 175° 10' 47.8045"&amp;nbsp; with 4 decimals is a better accuracy at approximately 3.8mm, 5 decimal places would be even better at 0.38mm but I understand the project location seems to be limited to 4 decimal places itself so that would be acceptable.&lt;BR /&gt;&lt;BR /&gt;Is there a way to get 4 decimal places displayed? This seems to be the same on version AC25 and AC26.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;FONT face="courier new,courier" color="grey"&gt;Operating system used: &lt;EM&gt;Windows 10&lt;/EM&gt;&lt;/FONT&gt;&lt;/P&gt;</description>
      <pubDate>Tue, 03 Jun 2025 04:00:37 GMT</pubDate>
      <guid>https://community.graphisoft.com/t5/Libraries-objects/World-Coordinate-Dimensions/m-p/664456#M51222</guid>
      <dc:creator>LCarew</dc:creator>
      <dc:date>2025-06-03T04:00:37Z</dc:date>
    </item>
    <item>
      <title>Re: World Coordinate Dimensions</title>
      <link>https://community.graphisoft.com/t5/Libraries-objects/World-Coordinate-Dimensions/m-p/664459#M51223</link>
      <description>&lt;P&gt;try changing the decimal place within the project preference settings withing the calculation units to 4 decimal place.&lt;/P&gt;</description>
      <pubDate>Tue, 03 Jun 2025 04:51:10 GMT</pubDate>
      <guid>https://community.graphisoft.com/t5/Libraries-objects/World-Coordinate-Dimensions/m-p/664459#M51223</guid>
      <dc:creator>ryejuan</dc:creator>
      <dc:date>2025-06-03T04:51:10Z</dc:date>
    </item>
    <item>
      <title>Re: World Coordinate Dimensions</title>
      <link>https://community.graphisoft.com/t5/Libraries-objects/World-Coordinate-Dimensions/m-p/664546#M51225</link>
      <description>&lt;P&gt;Hi,&lt;/P&gt;
&lt;P&gt;The number of decimal places for this object cannot be set in the project preferences because it is defined directly in the object's macro.&lt;BR /&gt;You need to make a copy of the object and the macro to add decimal places.&lt;/P&gt;
&lt;P&gt;There are only two values ​​to modify on two lines in the 2D and 3D script of the macro.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Here are the original lines that need to be replaced.&lt;/P&gt;
&lt;LI-CODE lang="markup"&gt;	text_x_coor = LONG_LETTER + " " + STR(LONG_DEGREE,1,0) + "° " + STR(LONG_MINUTE,1,0) + "' " + STR(LONG_SECOND,3,2) + "''"
	text_y_coor = LAT_LETTER  + " " + STR(LAT_DEGREE, 1,0) + "° " + STR(LAT_MINUTE, 1,0) + "' " + STR(LAT_SECOND, 3,2) + "''"&lt;/LI-CODE&gt;
&lt;P&gt;And here with 4 decimal places.&lt;/P&gt;
&lt;LI-CODE lang="markup"&gt;	text_x_coor = LONG_LETTER + " " + STR(LONG_DEGREE,1,0) + "° " + STR(LONG_MINUTE,1,0) + "' " + STR(LONG_SECOND,5,4) + "''"
	text_y_coor = LAT_LETTER  + " " + STR(LAT_DEGREE, 1,0) + "° " + STR(LAT_MINUTE, 1,0) + "' " + STR(LAT_SECOND, 5,4) + "''"&lt;/LI-CODE&gt;
&lt;P&gt;And with 5 decimal places.&lt;/P&gt;
&lt;LI-CODE lang="markup"&gt;	text_x_coor = LONG_LETTER + " " + STR(LONG_DEGREE,1,0) + "° " + STR(LONG_MINUTE,1,0) + "' " + STR(LONG_SECOND,6,5) + "''"
	text_y_coor = LAT_LETTER  + " " + STR(LAT_DEGREE, 1,0) + "° " + STR(LAT_MINUTE, 1,0) + "' " + STR(LAT_SECOND, 6,5) + "''"&lt;/LI-CODE&gt;</description>
      <pubDate>Tue, 03 Jun 2025 12:00:56 GMT</pubDate>
      <guid>https://community.graphisoft.com/t5/Libraries-objects/World-Coordinate-Dimensions/m-p/664546#M51225</guid>
      <dc:creator>Yves</dc:creator>
      <dc:date>2025-06-03T12:00:56Z</dc:date>
    </item>
  </channel>
</rss>

