<?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: Mosaic to New raster using python in Python Questions</title>
    <link>https://community.esri.com/t5/python-questions/mosaic-to-new-raster-using-python/m-p/532579#M41720</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;Jake, or others,&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;Without trying the tool (stuff is running for me right now) I'm curious if your suggested method would work if I wanted to clip the mosaic after creating it? Since, the notes describe the tool as creating a layer that reads existing rasters rather than creating a new dataset. &lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;So, would it work to use this tool to mosaic by image tiles (say 40 tiles), then create clipped images that are from a process grid (say 10 grid polygons)? Or would the clip not work since a comprehensive mosaic does not truly exist?&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Thanks for your thoughts&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Rich&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Tue, 14 Aug 2012 18:59:13 GMT</pubDate>
    <dc:creator>RichardThurau</dc:creator>
    <dc:date>2012-08-14T18:59:13Z</dc:date>
    <item>
      <title>Mosaic to New raster using python</title>
      <link>https://community.esri.com/t5/python-questions/mosaic-to-new-raster-using-python/m-p/532577#M41718</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;Mosaic to New raster using python&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;Hello!! &lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;I am trying to mosaic several aster gdem file using python in arcgis 10.&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;i was found a script to do that for two aster but i have got more than 10 files to merge.&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;the script i used is :&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;import arcgisscripting&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;gp = arcgisscripting.create()&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;try:&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;# Set local variables&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;InRaster = "C:/Users/mycomputer/Desktop/dem/ASTGTM2_N27W001_dem.tif;C:/Users/mycomputer/Desktop/dem/ASTGTM2_N27W002_dem.tif"&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;OutWorkspace = "C:/Users/mycomputer/Desktop"&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;# Process: MosaicToNew&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;gp.MosaicToNewRaster_management(Inraster, OutWorkspace, "all_raster.tif", "#", "16_BIT_UNSIGNED", "#","1", "BLEND", "MATCH")&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;except:&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;# Print error message if an error occurs&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;gp.GetMessages()&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Need some help for processing&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sun, 08 Apr 2012 14:30:34 GMT</pubDate>
      <guid>https://community.esri.com/t5/python-questions/mosaic-to-new-raster-using-python/m-p/532577#M41718</guid>
      <dc:creator>ayoubabod</dc:creator>
      <dc:date>2012-04-08T14:30:34Z</dc:date>
    </item>
    <item>
      <title>Re: Mosaic to New raster using python</title>
      <link>https://community.esri.com/t5/python-questions/mosaic-to-new-raster-using-python/m-p/532578#M41719</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;I would recommend using the new &lt;/SPAN&gt;&lt;A href="http://help.arcgis.com/en/arcgisdesktop/10.0/help/index.html#//009t00000037000000"&gt;mosaic dataset&lt;/A&gt;&lt;SPAN&gt; that's available for ArcGIS 10.&amp;nbsp; Creating the mosaic dataset will be much faster, you will receive much better performance, and you do not need to use a python script to create one.&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 09 Apr 2012 10:32:15 GMT</pubDate>
      <guid>https://community.esri.com/t5/python-questions/mosaic-to-new-raster-using-python/m-p/532578#M41719</guid>
      <dc:creator>JakeSkinner</dc:creator>
      <dc:date>2012-04-09T10:32:15Z</dc:date>
    </item>
    <item>
      <title>Re: Mosaic to New raster using python</title>
      <link>https://community.esri.com/t5/python-questions/mosaic-to-new-raster-using-python/m-p/532579#M41720</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;Jake, or others,&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;Without trying the tool (stuff is running for me right now) I'm curious if your suggested method would work if I wanted to clip the mosaic after creating it? Since, the notes describe the tool as creating a layer that reads existing rasters rather than creating a new dataset. &lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;So, would it work to use this tool to mosaic by image tiles (say 40 tiles), then create clipped images that are from a process grid (say 10 grid polygons)? Or would the clip not work since a comprehensive mosaic does not truly exist?&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Thanks for your thoughts&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Rich&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 14 Aug 2012 18:59:13 GMT</pubDate>
      <guid>https://community.esri.com/t5/python-questions/mosaic-to-new-raster-using-python/m-p/532579#M41720</guid>
      <dc:creator>RichardThurau</dc:creator>
      <dc:date>2012-08-14T18:59:13Z</dc:date>
    </item>
    <item>
      <title>Re: Mosaic to New raster using python</title>
      <link>https://community.esri.com/t5/python-questions/mosaic-to-new-raster-using-python/m-p/532580#M41721</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;Hi Richard,&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;You can use a mosaict dataset as input to a geoprocessing tool, so you would be able to perform the clip.&amp;nbsp; Here is some more information:&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;A href="http://resources.arcgis.com/en/help/main/10.1/index.html#/Using_mosaic_datasets_and_image_services_in_analysis_and_geoprocessing/009t000001z0000000/"&gt;http://resources.arcgis.com/en/help/main/10.1/index.html#/Using_mosaic_datasets_and_image_services_in_analysis_and_geoprocessing/009t000001z0000000/&lt;/A&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 14 Aug 2012 19:09:23 GMT</pubDate>
      <guid>https://community.esri.com/t5/python-questions/mosaic-to-new-raster-using-python/m-p/532580#M41721</guid>
      <dc:creator>JakeSkinner</dc:creator>
      <dc:date>2012-08-14T19:09:23Z</dc:date>
    </item>
  </channel>
</rss>

