<?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 Scaling: Small, but large.&amp;nbsp; :) in Python Questions</title>
    <link>https://community.esri.com/t5/python-questions/scaling-small-but-large-nbsp/m-p/564169#M44144</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;So, I have a map I'm outputting to PDF based on specific bookmarks (that part is working fine), but I can't find the right method to make it produce the way I need.&amp;nbsp; This is a detailed map with many points/labels.&amp;nbsp; I need to be able to make these maps appear zoomed in, yet show the whole map.&amp;nbsp; In other words, the map pdf will be enormous and I'd just have to zoom-in in order to read the text over the point.&amp;nbsp; I've been messing with &lt;/SPAN&gt;&lt;PRE class="plain" name="code"&gt;.scale&lt;/PRE&gt;&lt;DIV style="display:none;"&gt; &lt;/DIV&gt;&lt;SPAN&gt; but that doesn't seem to do what I need (unless I'm using it wrong).&amp;nbsp; For example, &lt;/SPAN&gt;&lt;PRE class="plain" name="code"&gt;df.scale = 2000&lt;/PRE&gt;&lt;DIV style="display:none;"&gt; &lt;/DIV&gt;&lt;SPAN&gt; shows the level of detail I need and individual points/labels are separated and clear, but is WAY too close on the map.&amp;nbsp; If I zoom way down in ArcMAP, I can see all labels/points.&amp;nbsp; That's what I want, just with high resolution to see everything at once when zoomed out.&amp;nbsp; &lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;I realize it will be pretty gnarly when zoomed way out - the points (and text within them) would all appear very small when zoomed out, but I need to be able to see the detail if I zoom in on the PDF.&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Mon, 03 Mar 2014 14:20:08 GMT</pubDate>
    <dc:creator>DannyLackey</dc:creator>
    <dc:date>2014-03-03T14:20:08Z</dc:date>
    <item>
      <title>Scaling: Small, but large.  :)</title>
      <link>https://community.esri.com/t5/python-questions/scaling-small-but-large-nbsp/m-p/564169#M44144</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;So, I have a map I'm outputting to PDF based on specific bookmarks (that part is working fine), but I can't find the right method to make it produce the way I need.&amp;nbsp; This is a detailed map with many points/labels.&amp;nbsp; I need to be able to make these maps appear zoomed in, yet show the whole map.&amp;nbsp; In other words, the map pdf will be enormous and I'd just have to zoom-in in order to read the text over the point.&amp;nbsp; I've been messing with &lt;/SPAN&gt;&lt;PRE class="plain" name="code"&gt;.scale&lt;/PRE&gt;&lt;DIV style="display:none;"&gt; &lt;/DIV&gt;&lt;SPAN&gt; but that doesn't seem to do what I need (unless I'm using it wrong).&amp;nbsp; For example, &lt;/SPAN&gt;&lt;PRE class="plain" name="code"&gt;df.scale = 2000&lt;/PRE&gt;&lt;DIV style="display:none;"&gt; &lt;/DIV&gt;&lt;SPAN&gt; shows the level of detail I need and individual points/labels are separated and clear, but is WAY too close on the map.&amp;nbsp; If I zoom way down in ArcMAP, I can see all labels/points.&amp;nbsp; That's what I want, just with high resolution to see everything at once when zoomed out.&amp;nbsp; &lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;I realize it will be pretty gnarly when zoomed way out - the points (and text within them) would all appear very small when zoomed out, but I need to be able to see the detail if I zoom in on the PDF.&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 03 Mar 2014 14:20:08 GMT</pubDate>
      <guid>https://community.esri.com/t5/python-questions/scaling-small-but-large-nbsp/m-p/564169#M44144</guid>
      <dc:creator>DannyLackey</dc:creator>
      <dc:date>2014-03-03T14:20:08Z</dc:date>
    </item>
    <item>
      <title>Re: Scaling: Small, but large.  :)</title>
      <link>https://community.esri.com/t5/python-questions/scaling-small-but-large-nbsp/m-p/564170#M44145</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;Hello Danny,&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;I'd try playing with the export to pdf settings (see &lt;/SPAN&gt;&lt;A href="http://help.arcgis.com/en/arcgisdesktop/10.0/help/index.html#//00s300000027000000"&gt;here&lt;/A&gt;&lt;SPAN&gt;). You should be able to make a really high &lt;/SPAN&gt;&lt;SPAN style="font-style:italic;"&gt;resolution&lt;/SPAN&gt;&lt;SPAN&gt; pdf and then be able to zoom in and look around (on the pdf). I'd also try using the &lt;/SPAN&gt;&lt;SPAN style="font-style:italic;"&gt;layers_attributes&lt;/SPAN&gt;&lt;SPAN&gt; setting so you can turn on and off layers in the pdf. The &lt;/SPAN&gt;&lt;SPAN style="font-style:italic;"&gt;picture_symbol&lt;/SPAN&gt;&lt;SPAN&gt; setting can keep your vector data as vectors in the pdf so you can theoretically zoom in infinitely!&lt;/SPAN&gt;&lt;BR /&gt;&lt;PRE __default_attr="plain" __jive_macro_name="code" class="jive_macro_code jive_text_macro"&gt;arcpy.ExportToPDF(map_document, out_pdf,resolution=900,picture_symbol="VECTORIZE_BITMAP",layers_attributes="LAYERS_AND_ATTRIBUTES")&lt;/PRE&gt;&lt;BR /&gt;&lt;SPAN&gt;Let me know if that's what you're looking for!&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 03 Mar 2014 15:18:37 GMT</pubDate>
      <guid>https://community.esri.com/t5/python-questions/scaling-small-but-large-nbsp/m-p/564170#M44145</guid>
      <dc:creator>JoshuaChisholm</dc:creator>
      <dc:date>2014-03-03T15:18:37Z</dc:date>
    </item>
    <item>
      <title>Re: Scaling: Small, but large.  :)</title>
      <link>https://community.esri.com/t5/python-questions/scaling-small-but-large-nbsp/m-p/564172#M44147</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;Hello Danny,&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;I don't know if I've done that before. Sounds interesting though. Maybe you could play with &lt;/SPAN&gt;&lt;SPAN style="font-style: italic; text-decoration: underline;"&gt;df.referenceScale&lt;/SPAN&gt;&lt;SPAN&gt;. &lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Let me know if it works!&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 03 Mar 2014 18:44:41 GMT</pubDate>
      <guid>https://community.esri.com/t5/python-questions/scaling-small-but-large-nbsp/m-p/564172#M44147</guid>
      <dc:creator>JoshuaChisholm</dc:creator>
      <dc:date>2014-03-03T18:44:41Z</dc:date>
    </item>
    <item>
      <title>Re: Scaling: Small, but large.  :)</title>
      <link>https://community.esri.com/t5/python-questions/scaling-small-but-large-nbsp/m-p/564173#M44148</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;BLOCKQUOTE class="jive-quote"&gt;Hello Danny,&lt;BR /&gt;&lt;BR /&gt;I don't know if I've done that before. Sounds interesting though. Maybe you could play with &lt;SPAN style="font-style: italic; text-decoration: underline;"&gt;df.referenceScale&lt;/SPAN&gt;. &lt;BR /&gt;&lt;BR /&gt;Let me know if it works!&lt;/BLOCKQUOTE&gt;&lt;BR /&gt;&lt;SPAN&gt; &lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;Tried.&amp;nbsp; No dice.&amp;nbsp; Might go back to the drawing board and ditch the bookmark reference.&amp;nbsp; Might be hosing me.&amp;nbsp; I liked that it already had the section in focus, just not to the right scale...&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 03 Mar 2014 19:31:45 GMT</pubDate>
      <guid>https://community.esri.com/t5/python-questions/scaling-small-but-large-nbsp/m-p/564173#M44148</guid>
      <dc:creator>DannyLackey</dc:creator>
      <dc:date>2014-03-03T19:31:45Z</dc:date>
    </item>
    <item>
      <title>Re: Scaling: Small, but large.  :)</title>
      <link>https://community.esri.com/t5/python-questions/scaling-small-but-large-nbsp/m-p/564174#M44149</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;Hello Danny,&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;I was playing with the reference scale (manually in ArcMap) and made these three maps (with made up data). Is this the kind of thing you're looking for?&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;[ATTACH=CONFIG]31907[/ATTACH]&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;[ATTACH=CONFIG]31905[/ATTACH]&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;[ATTACH=CONFIG]31906[/ATTACH]&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 03 Mar 2014 19:53:24 GMT</pubDate>
      <guid>https://community.esri.com/t5/python-questions/scaling-small-but-large-nbsp/m-p/564174#M44149</guid>
      <dc:creator>JoshuaChisholm</dc:creator>
      <dc:date>2014-03-03T19:53:24Z</dc:date>
    </item>
    <item>
      <title>Re: Scaling: Small, but large.  :)</title>
      <link>https://community.esri.com/t5/python-questions/scaling-small-but-large-nbsp/m-p/564175#M44150</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;OL&gt;&lt;BR /&gt;&lt;/OL&gt;&lt;BLOCKQUOTE class="jive-quote"&gt;Hello Danny,&lt;BR /&gt;&lt;BR /&gt;I was playing with the reference scale (manually in ArcMap) and made these three maps (with made up data). Is this the kind of thing you're looking for?&lt;BR /&gt;[ATTACH=CONFIG]31907[/ATTACH]&lt;BR /&gt;[ATTACH=CONFIG]31905[/ATTACH]&lt;BR /&gt;[ATTACH=CONFIG]31906[/ATTACH]&lt;/BLOCKQUOTE&gt;&lt;BR /&gt;&lt;SPAN&gt; &lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;Yes!&amp;nbsp; It's ok if they are tiny points when zoomed out.&amp;nbsp; Although, in your last pic it looked like the points were changing size appearing closer together.&amp;nbsp; That wouldn't be the case in a PDF, right?&amp;nbsp; I would want them to stay separated when zoomed in as in your first 2 pics.&amp;nbsp; I need the map they are on to stay in relation to the points as well.&amp;nbsp; I want the labels/points to THINK it's a 1:1000, yet produce a zoomed out map (without jumbling the points/labels).&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 03 Mar 2014 19:57:20 GMT</pubDate>
      <guid>https://community.esri.com/t5/python-questions/scaling-small-but-large-nbsp/m-p/564175#M44150</guid>
      <dc:creator>DannyLackey</dc:creator>
      <dc:date>2014-03-03T19:57:20Z</dc:date>
    </item>
    <item>
      <title>Re: Scaling: Small, but large.  :)</title>
      <link>https://community.esri.com/t5/python-questions/scaling-small-but-large-nbsp/m-p/564176#M44151</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;Have you tried something like this?&lt;/SPAN&gt;&lt;BR /&gt;&lt;PRE class="lia-code-sample line-numbers language-none"&gt;
for bkmk in [bkmk for bkmk in arcpy.mapping.ListBookmarks(mxd,"*",df) if bkmk.name in ["North","Middle"]]:
&amp;nbsp;&amp;nbsp;&amp;nbsp; df.extent = bkmk.extent
&amp;nbsp;&amp;nbsp;&amp;nbsp; df.referenceScale=df.scale/4
&amp;nbsp;&amp;nbsp;&amp;nbsp; outFile = r"I:\GIS_Workspace\Output\\" + bkmk.name + ".pdf"
&amp;nbsp;&amp;nbsp;&amp;nbsp; arcpy.RefreshActiveView() #this line can often help
&amp;nbsp;&amp;nbsp;&amp;nbsp; arcpy.mapping.ExportToPDF(mxd, outFile, resolution=900,picture_symbol="VECTORIZE_BITMAP",layers_attributes="LAYERS_AND_ATTRIBUTES")&lt;/PRE&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sun, 12 Dec 2021 00:19:01 GMT</pubDate>
      <guid>https://community.esri.com/t5/python-questions/scaling-small-but-large-nbsp/m-p/564176#M44151</guid>
      <dc:creator>JoshuaChisholm</dc:creator>
      <dc:date>2021-12-12T00:19:01Z</dc:date>
    </item>
    <item>
      <title>Re: Scaling: Small, but large.  :)</title>
      <link>https://community.esri.com/t5/python-questions/scaling-small-but-large-nbsp/m-p/564177#M44152</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;This does work in terms of shrinking the points/labels down to what I need, but it also expands the view beyond the parameters of the bookmarks.&amp;nbsp; Any way to force the bookmark parameters in terms of zoom level?&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 05 Mar 2014 14:38:19 GMT</pubDate>
      <guid>https://community.esri.com/t5/python-questions/scaling-small-but-large-nbsp/m-p/564177#M44152</guid>
      <dc:creator>DannyLackey</dc:creator>
      <dc:date>2014-03-05T14:38:19Z</dc:date>
    </item>
    <item>
      <title>Re: Scaling: Small, but large.  :)</title>
      <link>https://community.esri.com/t5/python-questions/scaling-small-but-large-nbsp/m-p/564178#M44153</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;This is how the bookmark should come out (but with all labels/icons visible and smaller):&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;[ATTACH=CONFIG]31952[/ATTACH]&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;This is what's actually producing with the code provided:&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;[ATTACH=CONFIG]31953[/ATTACH]&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;So, somehow I need to keep the focus of the bookmark, but make the icons/labels smaller.&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 05 Mar 2014 14:50:16 GMT</pubDate>
      <guid>https://community.esri.com/t5/python-questions/scaling-small-but-large-nbsp/m-p/564178#M44153</guid>
      <dc:creator>DannyLackey</dc:creator>
      <dc:date>2014-03-05T14:50:16Z</dc:date>
    </item>
    <item>
      <title>Re: Scaling: Small, but large.  :)</title>
      <link>https://community.esri.com/t5/python-questions/scaling-small-but-large-nbsp/m-p/564179#M44154</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;Hello Danny,&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Your line &lt;/SPAN&gt;&lt;SPAN style="font-style: italic; text-decoration: underline;"&gt;df.extent = bkmk.extent&lt;/SPAN&gt;&lt;SPAN&gt; should be setting up the right zoom/extent. It seems to be working on my end. I'm not sure I understand the problem correctly. Is the problem that the symbols are too large in the attached picture? Or is the problem that the map was exported as the data view only (and not the layout mode)?&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Let me know, I think we're getting close!&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 05 Mar 2014 16:47:28 GMT</pubDate>
      <guid>https://community.esri.com/t5/python-questions/scaling-small-but-large-nbsp/m-p/564179#M44154</guid>
      <dc:creator>JoshuaChisholm</dc:creator>
      <dc:date>2014-03-05T16:47:28Z</dc:date>
    </item>
    <item>
      <title>Re: Scaling: Small, but large.  :)</title>
      <link>https://community.esri.com/t5/python-questions/scaling-small-but-large-nbsp/m-p/564180#M44155</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;In the attached image (from arcmap) the focus area of the map is perfect (as saved in the bookmark), but points/labels too large.&amp;nbsp; On the PDF output, the points/labels are good, but the focus area of the map is too large (larger than bookmark parameters).&amp;nbsp; So, each attachment has elements that are correct - just have to get both aspects to output on my pdf.&amp;nbsp; The screen shot jpg has the correct focus of the map, while the PDF has the correct icon/label size.&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 05 Mar 2014 17:32:14 GMT</pubDate>
      <guid>https://community.esri.com/t5/python-questions/scaling-small-but-large-nbsp/m-p/564180#M44155</guid>
      <dc:creator>DannyLackey</dc:creator>
      <dc:date>2014-03-05T17:32:14Z</dc:date>
    </item>
    <item>
      <title>Re: Scaling: Small, but large.  :)</title>
      <link>https://community.esri.com/t5/python-questions/scaling-small-but-large-nbsp/m-p/564181#M44156</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;If you're exporting your map from Arcmap, you have to manually change your reference scale:&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;Data Frame Properties &amp;gt; General tab &amp;gt; Reference Scale&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;(the script sets it to 1/4 of the scale)&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;As for the bookmark not exporting to right extent (using arcpy), I've had that issue before too. In my case it would export to the correct area, but the scale would be off (like 1:125,264 instead of 1:95,000). In other words it would be more zoomed in/out than I had specified in the bookmark. Let me know if you're having the same issue. Perhaps this is a bug....or we're both just missing a step.&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 05 Mar 2014 18:09:11 GMT</pubDate>
      <guid>https://community.esri.com/t5/python-questions/scaling-small-but-large-nbsp/m-p/564181#M44156</guid>
      <dc:creator>JoshuaChisholm</dc:creator>
      <dc:date>2014-03-05T18:09:11Z</dc:date>
    </item>
    <item>
      <title>Re: Scaling: Small, but large.  :)</title>
      <link>https://community.esri.com/t5/python-questions/scaling-small-but-large-nbsp/m-p/564182#M44157</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;Is there a way I can alter the reference scale for only certain layers?&amp;nbsp; Its as if I need to only shrink down the icons/labels and NOT the colored shapes.&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 05 Mar 2014 18:21:01 GMT</pubDate>
      <guid>https://community.esri.com/t5/python-questions/scaling-small-but-large-nbsp/m-p/564182#M44157</guid>
      <dc:creator>DannyLackey</dc:creator>
      <dc:date>2014-03-05T18:21:01Z</dc:date>
    </item>
    <item>
      <title>Re: Scaling: Small, but large.  :)</title>
      <link>https://community.esri.com/t5/python-questions/scaling-small-but-large-nbsp/m-p/564183#M44158</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;The polygon areas themselves shouldn't shrink if you're altering the reference scale, but I don't think there is any way to change the reference scale for individual layers in your mxd.&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;If you're looking for a work around, you can try creating 2 or 3 sets of layer. Each set of layers could have different symbology and label settings for different scales. You can use you script to turn on/off these layer sets depending on the current scale of the map being exported.&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 05 Mar 2014 19:27:46 GMT</pubDate>
      <guid>https://community.esri.com/t5/python-questions/scaling-small-but-large-nbsp/m-p/564183#M44158</guid>
      <dc:creator>JoshuaChisholm</dc:creator>
      <dc:date>2014-03-05T19:27:46Z</dc:date>
    </item>
    <item>
      <title>Re: Scaling: Small, but large.  :)</title>
      <link>https://community.esri.com/t5/python-questions/scaling-small-but-large-nbsp/m-p/564184#M44159</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;Ok, tried manually changing the reference scale in ArcMAP and this IS what I need.&amp;nbsp; I haven't really been understanding what reference scale did (I'm more familiar with scriping for ArcMAP than USING ArcMAP....weird I know).&amp;nbsp; So, I've been playing with reference scale and I can get the icons/labels to shrink...but now there is a weird situation with the labels.&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Here is the complete code I'm using:&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;PRE class="lia-code-sample line-numbers language-none"&gt;import arcpy
import os
from arcpy import env

mxd = arcpy.mapping.MapDocument(r"I:\GIS_Workspace\Output\test.mxd")
df = arcpy.mapping.ListDataFrames(mxd, "Layers")[0]

lyrs=arcpy.mapping.ListLayers(mxd, "*", df)

#Turn off "Sections" and "MGT" layers:
for lyr in lyrs:
&amp;nbsp;&amp;nbsp;&amp;nbsp; if lyr.name in ["GRP_SAV_1-0"]:
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; lyr.visible=False

#Loop through layers (and bookmarks) to export PDFs
for lyr in lyrs:
&amp;nbsp;&amp;nbsp;&amp;nbsp; if lyr.name in ["Sections", "MGT"]:
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; lyr.visible=True #Turn on layer
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; for bkmk in [bkmk for bkmk in arcpy.mapping.ListBookmarks(mxd,"*",df) if bkmk.name in ["North","Middle"]]:
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; df.extent = bkmk.extent
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; df.referenceScale=1500
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; outFile = r"I:\GIS_Workspace\Output\\" + bkmk.name + ".pdf"
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; arcpy.RefreshActiveView()
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; arcpy.mapping.ExportToPDF(mxd, outFile, df, picture_symbol="VECTORIZE_BITMAP",layers_attributes="LAYERS_AND_ATTRIBUTES")&lt;/PRE&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Here is an example of what the labels are doing in the produced PDF...all smashed together.&amp;nbsp; It's like only the labels are being scaled down:&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;[ATTACH=CONFIG]31966[/ATTACH]&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;When I modify reference scale to 1:1000 within ArcMAP, it displays perfectly (within ArcMAP).&amp;nbsp; Maybe I'm placing this line in the wrong spot?&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sun, 12 Dec 2021 00:19:03 GMT</pubDate>
      <guid>https://community.esri.com/t5/python-questions/scaling-small-but-large-nbsp/m-p/564184#M44159</guid>
      <dc:creator>DannyLackey</dc:creator>
      <dc:date>2021-12-12T00:19:03Z</dc:date>
    </item>
    <item>
      <title>Re: Scaling: Small, but large.  :)</title>
      <link>https://community.esri.com/t5/python-questions/scaling-small-but-large-nbsp/m-p/564185#M44160</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;Nice, map automation &amp;gt; static maps.&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Do you have overlapping labels enabled on any of the layers that have overlapping text? Check here (using ArcMap):&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;Layer Properties (2x click target layer) &amp;gt; Labels tab &amp;gt; Placement Properties &amp;gt; Conflict Detection tab &amp;gt; Place overlapping labels&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 06 Mar 2014 13:02:10 GMT</pubDate>
      <guid>https://community.esri.com/t5/python-questions/scaling-small-but-large-nbsp/m-p/564185#M44160</guid>
      <dc:creator>JoshuaChisholm</dc:creator>
      <dc:date>2014-03-06T13:02:10Z</dc:date>
    </item>
    <item>
      <title>Re: Scaling: Small, but large.  :)</title>
      <link>https://community.esri.com/t5/python-questions/scaling-small-but-large-nbsp/m-p/564186#M44161</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;Nope, no overlapping labels selected.&amp;nbsp; It looks any character longer than 1 and smashing together.&amp;nbsp; The points with a label with 1 character look fine.&amp;nbsp; Weird.&amp;nbsp; Need a solution...&amp;nbsp; Still researching.&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 07 Mar 2014 13:06:35 GMT</pubDate>
      <guid>https://community.esri.com/t5/python-questions/scaling-small-but-large-nbsp/m-p/564186#M44161</guid>
      <dc:creator>DannyLackey</dc:creator>
      <dc:date>2014-03-07T13:06:35Z</dc:date>
    </item>
    <item>
      <title>Re: Scaling: Small, but large.  :)</title>
      <link>https://community.esri.com/t5/python-questions/scaling-small-but-large-nbsp/m-p/564187#M44162</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;Maybe it's character spacing?&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;In ArcMap: Layer Properties &amp;gt; Labels tab&amp;gt; Symbol &amp;gt; Edit Symbol &amp;gt; Formatted Text tab &amp;gt; Character Spacing&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 07 Mar 2014 13:35:30 GMT</pubDate>
      <guid>https://community.esri.com/t5/python-questions/scaling-small-but-large-nbsp/m-p/564187#M44162</guid>
      <dc:creator>JoshuaChisholm</dc:creator>
      <dc:date>2014-03-07T13:35:30Z</dc:date>
    </item>
    <item>
      <title>Re: Scaling: Small, but large.  :)</title>
      <link>https://community.esri.com/t5/python-questions/scaling-small-but-large-nbsp/m-p/564171#M44146</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;BLOCKQUOTE class="jive-quote"&gt;Hello Danny,&lt;BR /&gt;&lt;BR /&gt;I'd try playing with the export to pdf settings (see &lt;A href="http://help.arcgis.com/en/arcgisdesktop/10.0/help/index.html#//00s300000027000000" rel="nofollow noopener noreferrer" target="_blank"&gt;here&lt;/A&gt;). You should be able to make a really high &lt;SPAN style="font-style:italic;"&gt;resolution&lt;/SPAN&gt; pdf and then be able to zoom in and look around (on the pdf). I'd also try using the &lt;SPAN style="font-style:italic;"&gt;layers_attributes&lt;/SPAN&gt; setting so you can turn on and off layers in the pdf. The &lt;SPAN style="font-style:italic;"&gt;picture_symbol&lt;/SPAN&gt; setting can keep your vector data as vectors in the pdf so you can theoretically zoom in infinitely!&lt;BR /&gt;&lt;PRE class="lia-code-sample line-numbers language-none"&gt;arcpy.ExportToPDF(map_document, out_pdf,resolution=900,picture_symbol="VECTORIZE_BITMAP",layers_attributes="LAYERS_AND_ATTRIBUTES")&lt;/PRE&gt;&lt;BR /&gt;Let me know if that's what you're looking for!&lt;/BLOCKQUOTE&gt;&lt;BR /&gt;&lt;SPAN&gt; &lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;Perhaps I'm implementing it wrong...&amp;nbsp; Seems to still be missing the symbology data for the points and points all jumbled together.&amp;nbsp; Here is what I used: &lt;/SPAN&gt;&lt;PRE class="lia-code-sample line-numbers language-none"&gt;for bkmk in [bkmk for bkmk in arcpy.mapping.ListBookmarks(mxd,"*",df) if bkmk.name in ["North","Middle"]]:
&amp;nbsp;&amp;nbsp;&amp;nbsp; df.extent = bkmk.extent
&amp;nbsp;&amp;nbsp;&amp;nbsp; #df.scale *= 1.5
&amp;nbsp;&amp;nbsp;&amp;nbsp; #df.scale = 2000 # ex 12000 = 1:2,000
&amp;nbsp;&amp;nbsp;&amp;nbsp; outFile = r"I:\GIS_Workspace\Output\\" + bkmk.name + ".pdf"
&amp;nbsp;&amp;nbsp;&amp;nbsp; arcpy.mapping.ExportToPDF(mxd, outFile, resolution=900,picture_symbol="VECTORIZE_BITMAP",layers_attributes="LAYERS_AND_ATTRIBUTES")&lt;/PRE&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;The "LAYERS_AND_ATTRIBUTES" toggle is pretty cool.&amp;nbsp; I didn't know PDF could handle layers.&amp;nbsp; If it can also handle showing more data as you zoom in, I might not have to go this trouble.&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;What I'm trying to achieve is for all of the data to be present as if I'm zoomed in to say 1:1,500, freeze it that way, then zoom out to the extent I need.&amp;nbsp; Could it be because I'm referencing a bookmark which has a predefined zoom?&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sun, 12 Dec 2021 00:18:58 GMT</pubDate>
      <guid>https://community.esri.com/t5/python-questions/scaling-small-but-large-nbsp/m-p/564171#M44146</guid>
      <dc:creator>DannyLackey</dc:creator>
      <dc:date>2021-12-12T00:18:58Z</dc:date>
    </item>
  </channel>
</rss>

