<?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 Font Size from Column in Feet in Map Advice Community Questions</title>
    <link>https://community.esri.com/t5/map-advice-community-questions/font-size-from-column-in-feet/m-p/806410#M122</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi All,&lt;/P&gt;&lt;P&gt;I am using the following Expression to drive my Font Size based on the column (in ArcMap):&lt;/P&gt;&lt;P&gt;"&amp;lt;FNT size = '" &amp;amp; [TEXT_SIZE] &amp;amp; "' &amp;gt; " &amp;amp; [TEXTSTRING] &amp;amp; " &amp;lt;/FNT&amp;gt;"&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Works great but the font is in Ponts.&amp;nbsp; I would like to have the FONT to be in FEET.&amp;nbsp; They are fixed Feet on the ground.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;For example, I have a label that should be exactly 10 feet high on the ground.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;What can I do to my expression to use feet?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;thanks&lt;/P&gt;&lt;P&gt;gordon&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Thu, 14 Jun 2018 17:50:41 GMT</pubDate>
    <dc:creator>GordonLuckett1</dc:creator>
    <dc:date>2018-06-14T17:50:41Z</dc:date>
    <item>
      <title>Font Size from Column in Feet</title>
      <link>https://community.esri.com/t5/map-advice-community-questions/font-size-from-column-in-feet/m-p/806410#M122</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi All,&lt;/P&gt;&lt;P&gt;I am using the following Expression to drive my Font Size based on the column (in ArcMap):&lt;/P&gt;&lt;P&gt;"&amp;lt;FNT size = '" &amp;amp; [TEXT_SIZE] &amp;amp; "' &amp;gt; " &amp;amp; [TEXTSTRING] &amp;amp; " &amp;lt;/FNT&amp;gt;"&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Works great but the font is in Ponts.&amp;nbsp; I would like to have the FONT to be in FEET.&amp;nbsp; They are fixed Feet on the ground.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;For example, I have a label that should be exactly 10 feet high on the ground.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;What can I do to my expression to use feet?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;thanks&lt;/P&gt;&lt;P&gt;gordon&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 14 Jun 2018 17:50:41 GMT</pubDate>
      <guid>https://community.esri.com/t5/map-advice-community-questions/font-size-from-column-in-feet/m-p/806410#M122</guid>
      <dc:creator>GordonLuckett1</dc:creator>
      <dc:date>2018-06-14T17:50:41Z</dc:date>
    </item>
    <item>
      <title>Re: Font Size from Column in Feet</title>
      <link>https://community.esri.com/t5/map-advice-community-questions/font-size-from-column-in-feet/m-p/806411#M123</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Text is drawn in screen units defined in points in ArcGIS.&amp;nbsp; An 8 pt font is 8 pts at any scale unless a reference scale is set (of the text is part of annotation that has a reference scale).&amp;nbsp; You can mimic real-world sizes with a reference scale and a simple formula:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;EM&gt;outputPoints = (mapUnitsInches * 72) / scale&lt;/EM&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;In your case, if you want a piece of text to be a foot high at say a scale like 1:1000.&amp;nbsp; Convert feet to inches, so 12 in this case.&amp;nbsp; A point is 1/72 of a inch, you multiple by that.&amp;nbsp; Then divide it by the scale denominator.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;outputPoints = (12 * 72) /&amp;nbsp;1000&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;outputPoints&amp;nbsp;= .864pts&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;Note that the size of the text block will be 1 foot on the ground.&amp;nbsp; Letters themselves are often smaller than their block height and you may need to compensate&amp;nbsp;for this if you're&amp;nbsp;expecting a capital letter to be 1 foot.&lt;/SPAN&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 14 Jun 2018 21:26:57 GMT</pubDate>
      <guid>https://community.esri.com/t5/map-advice-community-questions/font-size-from-column-in-feet/m-p/806411#M123</guid>
      <dc:creator>CraigWilliams</dc:creator>
      <dc:date>2018-06-14T21:26:57Z</dc:date>
    </item>
    <item>
      <title>Re: Font Size from Column in Feet</title>
      <link>https://community.esri.com/t5/map-advice-community-questions/font-size-from-column-in-feet/m-p/806412#M124</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Thanks, this is kind of what I figured.&amp;nbsp; I was hoping for "Use mapping units for text height" button.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 14 Jun 2018 22:31:22 GMT</pubDate>
      <guid>https://community.esri.com/t5/map-advice-community-questions/font-size-from-column-in-feet/m-p/806412#M124</guid>
      <dc:creator>deleted-user-cKnlbhmCGZAZ</dc:creator>
      <dc:date>2018-06-14T22:31:22Z</dc:date>
    </item>
  </channel>
</rss>

