<?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: Export Raster Data (by extent of dataframe) - how to automate? in Python Questions</title>
    <link>https://community.esri.com/t5/python-questions/export-raster-data-by-extent-of-dataframe-how-to/m-p/475878#M37280</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;Thanks for your input,&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;The problem is that I cannot do any sort of geoprocessing (Clip_management) on the raster.&amp;nbsp; It is Read-Only in its native state.&amp;nbsp; What I am actually viewing is a layer file pointing to the data that is housed in a server in New Mexico and the file is too large (437GB) to export in order to "make it my own".&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Thu, 12 Jan 2012 16:53:17 GMT</pubDate>
    <dc:creator>DanielJones6</dc:creator>
    <dc:date>2012-01-12T16:53:17Z</dc:date>
    <item>
      <title>Export Raster Data (by extent of dataframe) - how to automate?</title>
      <link>https://community.esri.com/t5/python-questions/export-raster-data-by-extent-of-dataframe-how-to/m-p/475876#M37278</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;I have a 1m NAIP of the state of California (437GB) in Mr. Sid format that is Read-Only in its native state.&amp;nbsp; I only want a portion of Northern Cali but to do any sort of geoprocessing on the file I must export the file in chunks - right click on the layer -&amp;gt;Data-&amp;gt;Export-&amp;gt;so on...&amp;nbsp; I want to loop the process using PLSS sections&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;&amp;gt;&amp;gt;&amp;gt;for sec in sections:&amp;nbsp; Does anyone know how to code for the right click process as the raster clip tool won't work for this situation???&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Thank you for your time,&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;Frustrated GIS Tech.&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 12 Jan 2012 16:10:31 GMT</pubDate>
      <guid>https://community.esri.com/t5/python-questions/export-raster-data-by-extent-of-dataframe-how-to/m-p/475876#M37278</guid>
      <dc:creator>DanielJones6</dc:creator>
      <dc:date>2012-01-12T16:10:31Z</dc:date>
    </item>
    <item>
      <title>Re: Export Raster Data (by extent of dataframe) - how to automate?</title>
      <link>https://community.esri.com/t5/python-questions/export-raster-data-by-extent-of-dataframe-how-to/m-p/475877#M37279</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;I think the easiest approach would be to use model builder instead of Python:&lt;/SPAN&gt;&lt;BR /&gt;&lt;OL&gt;&lt;BR /&gt;&lt;LI&gt;Use the Iterate Features with your PLSS sections polygon feature class as input&lt;/LI&gt;&lt;BR /&gt;&lt;LI&gt;On each iteration, use CopyFeatures_management to the feature class to a intermediate polygon&amp;nbsp; feature class(say, "in_memory\clip_poly")&lt;/LI&gt;&lt;BR /&gt;&lt;LI&gt;Connect the temporary polygon and the input raster to the Clip_management tool as input parameters.&lt;/LI&gt;&lt;BR /&gt;&lt;LI&gt;Connect the temporary polygon to the tool for environment extent, and connect the input raster to set the environment for&amp;nbsp; snap raster and cell size.&lt;/LI&gt;&lt;BR /&gt;&lt;LI&gt;Set the output path of the Clip_management tool be something like "raster%Name%.jpg", this will uniquely name the outputs with the field iterator value. (Make sure the field you're iterating on on is nice and short, starts with a letter, and only includes characters: a-z,0-9,_)&lt;/LI&gt;&lt;BR /&gt;&lt;/OL&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 12 Jan 2012 16:46:39 GMT</pubDate>
      <guid>https://community.esri.com/t5/python-questions/export-raster-data-by-extent-of-dataframe-how-to/m-p/475877#M37279</guid>
      <dc:creator>curtvprice</dc:creator>
      <dc:date>2012-01-12T16:46:39Z</dc:date>
    </item>
    <item>
      <title>Re: Export Raster Data (by extent of dataframe) - how to automate?</title>
      <link>https://community.esri.com/t5/python-questions/export-raster-data-by-extent-of-dataframe-how-to/m-p/475878#M37280</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;Thanks for your input,&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;The problem is that I cannot do any sort of geoprocessing (Clip_management) on the raster.&amp;nbsp; It is Read-Only in its native state.&amp;nbsp; What I am actually viewing is a layer file pointing to the data that is housed in a server in New Mexico and the file is too large (437GB) to export in order to "make it my own".&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 12 Jan 2012 16:53:17 GMT</pubDate>
      <guid>https://community.esri.com/t5/python-questions/export-raster-data-by-extent-of-dataframe-how-to/m-p/475878#M37280</guid>
      <dc:creator>DanielJones6</dc:creator>
      <dc:date>2012-01-12T16:53:17Z</dc:date>
    </item>
    <item>
      <title>Re: Export Raster Data (by extent of dataframe) - how to automate?</title>
      <link>https://community.esri.com/t5/python-questions/export-raster-data-by-extent-of-dataframe-how-to/m-p/475879#M37281</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;BLOCKQUOTE class="jive-quote"&gt;Thanks for your input,&lt;BR /&gt;&lt;BR /&gt;The problem is that I cannot do any sort of geoprocessing (Clip_management) on the raster.&amp;nbsp; It is Read-Only in its native state.&amp;nbsp; What I am actually viewing is a layer file pointing to the data that is housed in a server in New Mexico and the file is too large (437GB) to export in order to "make it my own".&lt;/BLOCKQUOTE&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Hmm I would think setting the environment extent first would only pull across the part the raster you'd need. Have you tried that? If Clip_management doesn't work you may want to try CopyRaster_management - it isn't a spatial analyst tool so it may work better with a your raster web service. The doc for Copy_Raster says it honors the extent and snap raster environment.&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 12 Jan 2012 17:04:53 GMT</pubDate>
      <guid>https://community.esri.com/t5/python-questions/export-raster-data-by-extent-of-dataframe-how-to/m-p/475879#M37281</guid>
      <dc:creator>curtvprice</dc:creator>
      <dc:date>2012-01-12T17:04:53Z</dc:date>
    </item>
    <item>
      <title>Re: Export Raster Data (by extent of dataframe) - how to automate?</title>
      <link>https://community.esri.com/t5/python-questions/export-raster-data-by-extent-of-dataframe-how-to/m-p/475880#M37282</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;Mr. Curtvprice,&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Thanks for your tip: CopyRaster_management!!!&amp;nbsp; I had a colleague try the tool out and it works on the Read-Only layer file.&amp;nbsp; I haven't looped the process yet, but manipulation was the major setback.&amp;nbsp; &lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Thank you for your time,&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;Frustrated GIS Tech.&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 17 Jan 2012 14:48:32 GMT</pubDate>
      <guid>https://community.esri.com/t5/python-questions/export-raster-data-by-extent-of-dataframe-how-to/m-p/475880#M37282</guid>
      <dc:creator>DanielJones6</dc:creator>
      <dc:date>2012-01-17T14:48:32Z</dc:date>
    </item>
  </channel>
</rss>

