<?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: Extract By Mask but based on elevation in ArcGIS Pro Questions</title>
    <link>https://community.esri.com/t5/arcgis-pro-questions/extract-by-mask-but-based-on-elevation/m-p/1115638#M47719</link>
    <description>&lt;P&gt;Ah, the difference is that my top surface is variable, not one constant maximum elevation--- but that helped me realize I can make one raster to consider against a constant value! Thank you!&lt;/P&gt;&lt;P&gt;I just got it to work in Raster Calculator as:&lt;/P&gt;&lt;P&gt;Con((Top Surface -Bottom Surface)&amp;gt;=0 ,Bottom Surface)&lt;/P&gt;</description>
    <pubDate>Wed, 10 Nov 2021 14:09:07 GMT</pubDate>
    <dc:creator>AnnaPearson</dc:creator>
    <dc:date>2021-11-10T14:09:07Z</dc:date>
    <item>
      <title>Extract By Mask but based on elevation</title>
      <link>https://community.esri.com/t5/arcgis-pro-questions/extract-by-mask-but-based-on-elevation/m-p/1115413#M47685</link>
      <description>&lt;P&gt;Does anyone know if there's a way to do something like Extract by Mask but along the z-axis instead of x/y?&lt;/P&gt;&lt;P&gt;I have many raster grids representing surfaces and I want to extract just the cells that are below a given surface (in other words- essentially 'clipping' them so nothing peeks above the top surface).&amp;nbsp;&lt;/P&gt;&lt;P&gt;I can adjust to other file types like multipatches if anyone knows of a way to do this with another file type.&amp;nbsp;&lt;/P&gt;&lt;P&gt;The best I've found so far is trying to do something with Extract By Attributes, but I don't have much of any experience with SQL and I'm not sure if that could work anyway (?), since raster attribute tables are one row per 'Value' instead of one row per cell.&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Tue, 09 Nov 2021 21:00:43 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-pro-questions/extract-by-mask-but-based-on-elevation/m-p/1115413#M47685</guid>
      <dc:creator>AnnaPearson</dc:creator>
      <dc:date>2021-11-09T21:00:43Z</dc:date>
    </item>
    <item>
      <title>Re: Extract By Mask but based on elevation</title>
      <link>https://community.esri.com/t5/arcgis-pro-questions/extract-by-mask-but-based-on-elevation/m-p/1115434#M47690</link>
      <description>&lt;P&gt;You can create the "mask" by many ways, but&lt;/P&gt;&lt;P&gt;&lt;A href="https://pro.arcgis.com/en/pro-app/latest/tool-reference/spatial-analyst/con-.htm" target="_blank"&gt;Con (Spatial Analyst)—ArcGIS Pro | Documentation&lt;/A&gt;&lt;/P&gt;&lt;P&gt;would seem to fit the bill.&lt;/P&gt;&lt;P&gt;What do you want the values to be above your threshold elevation?&amp;nbsp; nodata?&amp;nbsp; your threshold value?&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Tue, 09 Nov 2021 21:30:39 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-pro-questions/extract-by-mask-but-based-on-elevation/m-p/1115434#M47690</guid>
      <dc:creator>DanPatterson</dc:creator>
      <dc:date>2021-11-09T21:30:39Z</dc:date>
    </item>
    <item>
      <title>Re: Extract By Mask but based on elevation</title>
      <link>https://community.esri.com/t5/arcgis-pro-questions/extract-by-mask-but-based-on-elevation/m-p/1115610#M47716</link>
      <description>&lt;P&gt;Nodata would be perfect for values that go above the top surface. Thank you, Con looks very useful! I'm still similarly stuck on the clause though, i.e. wanting something like:&lt;/P&gt;&lt;P&gt;Conditional raster: the top surface&lt;/P&gt;&lt;P&gt;True raster: the surface I want to 'clip'&lt;/P&gt;&lt;P&gt;False raster: none, that way it shows nodata if the surface goes above the top surface&lt;/P&gt;&lt;P&gt;Expression: Where &lt;EM&gt;Value (top surface)&lt;/EM&gt; is greater than &lt;EM&gt;Value (surface I want to 'clip')&lt;/EM&gt;&lt;/P&gt;</description>
      <pubDate>Wed, 10 Nov 2021 13:13:41 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-pro-questions/extract-by-mask-but-based-on-elevation/m-p/1115610#M47716</guid>
      <dc:creator>AnnaPearson</dc:creator>
      <dc:date>2021-11-10T13:13:41Z</dc:date>
    </item>
    <item>
      <title>Re: Extract By Mask but based on elevation</title>
      <link>https://community.esri.com/t5/arcgis-pro-questions/extract-by-mask-but-based-on-elevation/m-p/1115632#M47718</link>
      <description>&lt;P&gt;maybe setnull diretly&lt;/P&gt;&lt;P&gt;A # your elevation raster, "10" is the maximum elevation&lt;BR /&gt;B = SetNull(A &amp;gt; 10, A)&lt;/P&gt;&lt;P&gt;&lt;A href="https://pro.arcgis.com/en/pro-app/latest/tool-reference/spatial-analyst/setting-cell-values-to-nodata-with-setnull.htm" target="_blank"&gt;Setting values to NoData with Set Null—ArcGIS Pro | Documentation&lt;/A&gt;&lt;/P&gt;</description>
      <pubDate>Wed, 10 Nov 2021 13:55:09 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-pro-questions/extract-by-mask-but-based-on-elevation/m-p/1115632#M47718</guid>
      <dc:creator>DanPatterson</dc:creator>
      <dc:date>2021-11-10T13:55:09Z</dc:date>
    </item>
    <item>
      <title>Re: Extract By Mask but based on elevation</title>
      <link>https://community.esri.com/t5/arcgis-pro-questions/extract-by-mask-but-based-on-elevation/m-p/1115638#M47719</link>
      <description>&lt;P&gt;Ah, the difference is that my top surface is variable, not one constant maximum elevation--- but that helped me realize I can make one raster to consider against a constant value! Thank you!&lt;/P&gt;&lt;P&gt;I just got it to work in Raster Calculator as:&lt;/P&gt;&lt;P&gt;Con((Top Surface -Bottom Surface)&amp;gt;=0 ,Bottom Surface)&lt;/P&gt;</description>
      <pubDate>Wed, 10 Nov 2021 14:09:07 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-pro-questions/extract-by-mask-but-based-on-elevation/m-p/1115638#M47719</guid>
      <dc:creator>AnnaPearson</dc:creator>
      <dc:date>2021-11-10T14:09:07Z</dc:date>
    </item>
  </channel>
</rss>

