<?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 How to trim service area polygons in ArcPro in ArcGIS Network Analyst Questions</title>
    <link>https://community.esri.com/t5/arcgis-network-analyst-questions/how-to-trim-service-area-polygons-in-arcpro/m-p/632052#M6054</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Anyone know how to trim service area polygons from a network analysis in ArcPro? It seems to have a default setting of 100 meters and I don't see a way to change this.&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Unfortunately ArcMap keeps crashing due to the complexity of my network - otherwise it is simple to adjust this parameter there. I was able to get results after 13 hours in Pro, but saw that it trimmed my polygons too short. Any ideas?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Wed, 27 Sep 2017 14:46:19 GMT</pubDate>
    <dc:creator>LizGoldman1</dc:creator>
    <dc:date>2017-09-27T14:46:19Z</dc:date>
    <item>
      <title>How to trim service area polygons in ArcPro</title>
      <link>https://community.esri.com/t5/arcgis-network-analyst-questions/how-to-trim-service-area-polygons-in-arcpro/m-p/632052#M6054</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Anyone know how to trim service area polygons from a network analysis in ArcPro? It seems to have a default setting of 100 meters and I don't see a way to change this.&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Unfortunately ArcMap keeps crashing due to the complexity of my network - otherwise it is simple to adjust this parameter there. I was able to get results after 13 hours in Pro, but saw that it trimmed my polygons too short. Any ideas?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 27 Sep 2017 14:46:19 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-network-analyst-questions/how-to-trim-service-area-polygons-in-arcpro/m-p/632052#M6054</guid>
      <dc:creator>LizGoldman1</dc:creator>
      <dc:date>2017-09-27T14:46:19Z</dc:date>
    </item>
    <item>
      <title>Re: How to trim service area polygons in ArcPro</title>
      <link>https://community.esri.com/t5/arcgis-network-analyst-questions/how-to-trim-service-area-polygons-in-arcpro/m-p/632053#M6055</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;The trim settings are not currently accessible from the UI in Pro. &amp;nbsp;You have two options:&lt;/P&gt;&lt;OL&gt;&lt;LI&gt;To create the Service Area layer, use the&lt;A href="http://pro.arcgis.com/en/pro-app/tool-reference/network-analyst/make-service-area-analysis-layer.htm" rel="nofollow noopener noreferrer" target="_blank"&gt; Make Service Area Analysis Layer&lt;/A&gt;&amp;nbsp;geoprocessing tool. &amp;nbsp;You can adjust the trim settings in the Output Geometry section of the tool dialog. &amp;nbsp;Once the layer is created, though, you can't use the UI to adjust the settings again.&lt;/LI&gt;&lt;LI&gt;For an existing layer, you can use the python window and &lt;A href="http://pro.arcgis.com/en/pro-app/arcpy/network-analyst/serviceareasolverproperties.htm" rel="nofollow noopener noreferrer" target="_blank"&gt;NA solver properties&lt;/A&gt; to adjust the trim settings:&lt;/LI&gt;&lt;/OL&gt;&lt;BLOCKQUOTE class="jive_macro_quote jive-quote jive_text_macro"&gt;&lt;PRE class="lia-code-sample line-numbers language-none"&gt;&lt;CODE&gt;&lt;SPAN class="comment token"&gt;# Get the current ArcGIS Pro project:&lt;/SPAN&gt;
doc &lt;SPAN class="operator token"&gt;=&lt;/SPAN&gt; arcpy&lt;SPAN class="punctuation token"&gt;.&lt;/SPAN&gt;mp&lt;SPAN class="punctuation token"&gt;.&lt;/SPAN&gt;ArcGISProject&lt;SPAN class="punctuation token"&gt;(&lt;/SPAN&gt;&lt;SPAN class="string token"&gt;'current'&lt;/SPAN&gt;&lt;SPAN class="punctuation token"&gt;)&lt;/SPAN&gt;
&lt;SPAN class="comment token"&gt;# Get the current map (note, if you have more than one map, &lt;/SPAN&gt;
&lt;SPAN class="comment token"&gt;# you might need to change the index from 0 to something else)&lt;/SPAN&gt;
mapObj &lt;SPAN class="operator token"&gt;=&lt;/SPAN&gt; doc&lt;SPAN class="punctuation token"&gt;.&lt;/SPAN&gt;listMaps&lt;SPAN class="punctuation token"&gt;(&lt;/SPAN&gt;&lt;SPAN class="punctuation token"&gt;)&lt;/SPAN&gt;&lt;SPAN class="punctuation token"&gt;[&lt;/SPAN&gt;&lt;SPAN class="number token"&gt;0&lt;/SPAN&gt;&lt;SPAN class="punctuation token"&gt;]&lt;/SPAN&gt;
&lt;SPAN class="comment token"&gt;# Get the Service Area layer object (might need to change the string&lt;/SPAN&gt;
&lt;SPAN class="comment token"&gt;# 'Service Area' to match the SA layer's actual name)&lt;/SPAN&gt;
layerObj &lt;SPAN class="operator token"&gt;=&lt;/SPAN&gt; mapObj&lt;SPAN class="punctuation token"&gt;.&lt;/SPAN&gt;listLayers&lt;SPAN class="punctuation token"&gt;(&lt;/SPAN&gt;&lt;SPAN class="string token"&gt;'Service Area'&lt;/SPAN&gt;&lt;SPAN class="punctuation token"&gt;)&lt;/SPAN&gt;&lt;SPAN class="punctuation token"&gt;[&lt;/SPAN&gt;&lt;SPAN class="number token"&gt;0&lt;/SPAN&gt;&lt;SPAN class="punctuation token"&gt;]&lt;/SPAN&gt;
&lt;SPAN class="comment token"&gt;# Get the Service Area solver properties object&lt;/SPAN&gt;
props &lt;SPAN class="operator token"&gt;=&lt;/SPAN&gt; arcpy&lt;SPAN class="punctuation token"&gt;.&lt;/SPAN&gt;na&lt;SPAN class="punctuation token"&gt;.&lt;/SPAN&gt;GetSolverProperties&lt;SPAN class="punctuation token"&gt;(&lt;/SPAN&gt;layerObj&lt;SPAN class="punctuation token"&gt;)&lt;/SPAN&gt;
&lt;SPAN class="comment token"&gt;# Whether or not to trim polygons&lt;/SPAN&gt;
props&lt;SPAN class="punctuation token"&gt;.&lt;/SPAN&gt;trimPolygons &lt;SPAN class="operator token"&gt;=&lt;/SPAN&gt; &lt;SPAN class="string token"&gt;"TRIM_POLYS"&lt;/SPAN&gt;
&lt;SPAN class="comment token"&gt;# Trim distance&lt;/SPAN&gt;
props&lt;SPAN class="punctuation token"&gt;.&lt;/SPAN&gt;trimDistance &lt;SPAN class="operator token"&gt;=&lt;/SPAN&gt; &lt;SPAN class="string token"&gt;"50 meters"&lt;/SPAN&gt;&lt;SPAN class="line-numbers-rows"&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/CODE&gt;&lt;/PRE&gt;&lt;/BLOCKQUOTE&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sun, 12 Dec 2021 02:53:50 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-network-analyst-questions/how-to-trim-service-area-polygons-in-arcpro/m-p/632053#M6055</guid>
      <dc:creator>MelindaMorang</dc:creator>
      <dc:date>2021-12-12T02:53:50Z</dc:date>
    </item>
  </channel>
</rss>

