<?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: ApplySymbologyFromLayer Not Working for Raster Mosaic Dataset in Python Questions</title>
    <link>https://community.esri.com/t5/python-questions/applysymbologyfromlayer-not-working-for-raster/m-p/166480#M12840</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;I may have missed this, but have you tried using Make Raster Layer using your mosaic dataset as input, then saving that output to a layer file to use when replacing the layer in the TOC of your map (via UpdateLayer, if I'm following)?&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;This is per Jake's instructions in the previous post; I'll leave it to you to test if you haven't already.&amp;nbsp; Here's the doc and I'm guessing the data type for a mosaic is as in the documentation, a 'composite geodataset':&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;A href="http://resources.arcgis.com/en/help/main/10.2/index.html#//00170000006t000000"&gt;http://resources.arcgis.com/en/help/main/10.2/index.html#//00170000006t000000&lt;/A&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Wayne&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Thu, 09 Jan 2014 22:08:51 GMT</pubDate>
    <dc:creator>T__WayneWhitley</dc:creator>
    <dc:date>2014-01-09T22:08:51Z</dc:date>
    <item>
      <title>ApplySymbologyFromLayer Not Working for Raster Mosaic Dataset</title>
      <link>https://community.esri.com/t5/python-questions/applysymbologyfromlayer-not-working-for-raster/m-p/166475#M12835</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;I am thoroughly flummoxed with this issue!&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;I've created a set of daily surfaces representing groundwater levels.&amp;nbsp; I want to step through them in time (i.e., make them time-enabled).&amp;nbsp; I found a good site ( &lt;/SPAN&gt;&lt;A href="http://esriaustraliatechblog.wordpress.com/2011/08/18/time-enabled-rasters/" rel="nofollow noopener noreferrer" target="_blank"&gt;http://esriaustraliatechblog.wordpress.com/2011/08/18/time-enabled-rasters/&lt;/A&gt;&lt;SPAN&gt; ) that essentially said to create a raster mosaic dataset, add all my daily surfaces, and create a field that represents the date.&amp;nbsp; That works great!&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Now, I want to color-ramp the mosaic dataset.&amp;nbsp; I'm able to do that and have saved it as a layer file.&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;The code below crashes when I try to apply the saved layer file to my surface raster mosaic dataset, saying&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;"ERROR 000968: The symbol layer does not match the input layer&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Ultimately, I'll want to re-classify the raster because different datasets will have different min/max values.&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Any ideas?&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Jon Mulder&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;PRE class="lia-code-sample line-numbers language-none"&gt;import arcpy
import arcpy.mapping
import datetime
import os

##Reference the Current map document.
mxd = arcpy.mapping.MapDocument("CURRENT")
df = arcpy.mapping.ListDataFrames(mxd)[0]
GeoDatabaseNameAndLocation = "G:\Documents\GIS\HydstraData\HydstraMeasurementsDeep\Contours_Daily_20130601_20130605.gdb"
LayerFileNameAndLocation_WSE_Surface = "G:\Documents\GIS\HydstraData\Template_WSE_Surface.lyr"
arcpy.AddMessage(LayerFileNameAndLocation_WSE_Surface)
CurrentSurface = os.path.join(GeoDatabaseNameAndLocation,"WSE_RasterMosaicDataset")
arcpy.AddMessage(CurrentSurface)
Surface_lyr = arcpy.mapping.Layer(CurrentSurface)
arcpy.mapping.AddLayer(df, Surface_lyr, "BOTTOM")
arcpy.ApplySymbologyFromLayer_management(Surface_lyr,LayerFileNameAndLocation_WSE_Surface)&lt;/PRE&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;=====Error Message======================================&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;Executing: AddRaster&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;Start Time: Tue Jan 07 10:22:53 2014&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;Running script AddRaster...&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;G:\Documents\GIS\HydstraData\Template_WSE_Surface.lyr&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;G:\Documents\GIS\HydstraData\HydstraMeasurementsDeep\Contours_Daily_20130601_20130605.gdb\WSE_RasterMosaicDataset&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Traceback (most recent call last):&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;&amp;nbsp; File "G:\Documents\GIS\HydstraData\AddRasterMosaicToCurrentMap_20140107.py", line 16, in &amp;lt;module&amp;gt;&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; arcpy.ApplySymbologyFromLayer_management(Surface_lyr,LayerFileNameAndLocation_WSE_Surface)&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;&amp;nbsp; File "c:\program files (x86)\arcgis\desktop10.2\arcpy\arcpy\management.py", line 5754, in ApplySymbologyFromLayer&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; raise e&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;ExecuteError: Failed to execute. Parameters are not valid.&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;ERROR 000968: The symbol layer does not match the input layer&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;Failed to execute (ApplySymbologyFromLayer).&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Failed to execute (AddRaster).&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;Failed at Tue Jan 07 10:22:58 2014 (Elapsed Time: 4.64 seconds)&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sat, 11 Dec 2021 08:41:05 GMT</pubDate>
      <guid>https://community.esri.com/t5/python-questions/applysymbologyfromlayer-not-working-for-raster/m-p/166475#M12835</guid>
      <dc:creator>JonathanMulder</dc:creator>
      <dc:date>2021-12-11T08:41:05Z</dc:date>
    </item>
    <item>
      <title>Re: ApplySymbologyFromLayer Not Working for Raster Mosaic Dataset</title>
      <link>https://community.esri.com/t5/python-questions/applysymbologyfromlayer-not-working-for-raster/m-p/166476#M12836</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;Probably don't want ApplySymbology in this case.... UpdateLayer and Reclassify sounds more like it, see the code samples at the bottom of the page (RasterClassifiedSymbology examples) here:&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;A href="http://resources.arcgis.com/en/help/main/10.2/index.html#//00s30000005p000000"&gt;http://resources.arcgis.com/en/help/main/10.2/index.html#//00s30000005p000000&lt;/A&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 07 Jan 2014 17:06:20 GMT</pubDate>
      <guid>https://community.esri.com/t5/python-questions/applysymbologyfromlayer-not-working-for-raster/m-p/166476#M12836</guid>
      <dc:creator>T__WayneWhitley</dc:creator>
      <dc:date>2014-01-07T17:06:20Z</dc:date>
    </item>
    <item>
      <title>Re: ApplySymbologyFromLayer Not Working for Raster Mosaic Dataset</title>
      <link>https://community.esri.com/t5/python-questions/applysymbologyfromlayer-not-working-for-raster/m-p/166477#M12837</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;One thing to note is that when you are adding the mosaic dataset to your MXD using the 'AddLayer' function, you are adding it as a raster layer.&amp;nbsp;&amp;nbsp; Therefore, be sure you create your layer file from a raster layer and not the mosaic dataset itself.&amp;nbsp; If not, an error will occur when trying to run the 'UpdateLayer' function.&amp;nbsp; Try the following steps:&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;1.&amp;nbsp; Run the Make Raster Layer tool on the mosaic dataset&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;2.&amp;nbsp; Change the symbology and then create the layer file from the raster layer added to ArcMap&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;3.&amp;nbsp; Execute the following code:&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;PRE class="lia-code-sample line-numbers language-none"&gt;mxd = arcpy.mapping.MapDocument("CURRENT")
df = arcpy.mapping.ListDataFrames(mxd)[0]
GeoDatabaseNameAndLocation = r"G:\Documents\GIS\HydstraData\HydstraMeasurementsDeep\Contours_Daily_20130601_20130605.gdb"
LayerFileNameAndLocation_WSE_Surface = r"G:\Documents\GIS\HydstraData\Template_WSE_Surface.lyr"
arcpy.AddMessage(LayerFileNameAndLocation_WSE_Surface)
CurrentSurface = os.path.join(GeoDatabaseNameAndLocation,"WSE_RasterMosaicDataset")
arcpy.AddMessage(CurrentSurface)
Surface_lyr = arcpy.mapping.Layer(CurrentSurface)
arcpy.mapping.AddLayer(df, Surface_lyr, "BOTTOM")
updateLayer = arcpy.mapping.ListLayers(mxd, "WSE_RasterMosaicDataset", df)[0]
sourceLayer = arcpy.mapping.Layer(LayerFileNameAndLocation_WSE_Surface)
arcpy.mapping.UpdateLayer(df, updateLayer, sourceLayer)&lt;/PRE&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sat, 11 Dec 2021 08:41:08 GMT</pubDate>
      <guid>https://community.esri.com/t5/python-questions/applysymbologyfromlayer-not-working-for-raster/m-p/166477#M12837</guid>
      <dc:creator>JakeSkinner</dc:creator>
      <dc:date>2021-12-11T08:41:08Z</dc:date>
    </item>
    <item>
      <title>Re: ApplySymbologyFromLayer Not Working for Raster Mosaic Dataset</title>
      <link>https://community.esri.com/t5/python-questions/applysymbologyfromlayer-not-working-for-raster/m-p/166478#M12838</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;Thank you for your inputs, Wayne and JSkinn3.&amp;nbsp; Howver, I'm still muddling through this...&amp;nbsp; My methodolgy currently is:&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;UL&gt;&lt;BR /&gt;&lt;LI&gt;Identify the template layer file ("Template_WSE_Surface.lyr") that contains the symbolization.&lt;/LI&gt;&lt;BR /&gt;&lt;LI&gt;Replace the DataSource in the template layer file.&lt;/LI&gt;&lt;BR /&gt;&lt;/UL&gt;&lt;BR /&gt;&lt;SPAN&gt;That works fine and my raster mosaic dataset comes in fine with the Boundary, Footprint, and Image.&amp;nbsp; BUT, the Green-Red color ramping doesn't come across from my template layer; it's just grey-scale.&amp;nbsp; So, I tried the UpdateLayer method to bring in the symbolization.&amp;nbsp; But I get the following error: "ValueError: LayerObject: Unexpected error".&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;BTW JSkinn3, I didn't quite understand your methodolgy.&amp;nbsp; My rasters all cover the same extent; they are time-sensitive and my ultimate goal is to step through them with the Time Slider.&amp;nbsp; I tried your process (if I understood it correctly), and it only brought in the Image and not the Boundary nor Footprint.&amp;nbsp; I need the Footprint because that hold my Date/Time field for the Time Slider.&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Jon Mulder&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;PRE class="lia-code-sample line-numbers language-none"&gt;import arcpy
import arcpy.mapping
import datetime
import os

##Reference the Current map document.
mxd = arcpy.mapping.MapDocument("CURRENT")
df = arcpy.mapping.ListDataFrames(mxd)[0]
GeoDatabaseNameAndLocation = r"G:\Documents\GIS\HydstraData\HydstraMeasurementsDeep\Contours_Daily_20130630_20130705.gdb"
LayerFileNameAndLocation_WSE_Surface = r"G:\Documents\GIS\HydstraData\Template_WSE_Surface.lyr"
arcpy.AddMessage(LayerFileNameAndLocation_WSE_Surface)
CurrentSurface = os.path.join(GeoDatabaseNameAndLocation,"WSE_RasterMosaicDataset")
arcpy.AddMessage(CurrentSurface)
Surface_lyr = arcpy.mapping.Layer(LayerFileNameAndLocation_WSE_Surface)
Surface_lyr.replaceDataSource(GeoDatabaseNameAndLocation,"FILEGDB_WORKSPACE")
Surface_lyr = arcpy.mapping.ListLayers(mxd, "WSE_RasterMosaicDataset", df)[0]
SourceLayer = arcpy.mapping.Layer(r"G:\Documents\GIS\HydstraData\Template_WSE_Surface.lyr")
arcpy.AddMessage(Surface_lyr)
arcpy.AddMessage(SourceLayer)
arcpy.mapping.UpdateLayer(df,Surface_lyr,SourceLayer,True)
arcpy.mapping.AddLayer(df, Surface_lyr, "BOTTOM")&lt;/PRE&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;===Script Feedback=============================================&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;Executing: AddRaster&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;Start Time: Wed Jan 08 09:48:34 2014&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;Running script AddRaster...&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;G:\Documents\GIS\HydstraData\Template_WSE_Surface.lyr&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;G:\Documents\GIS\HydstraData\HydstraMeasurementsDeep\Contours_Daily_20130630_20130705.gdb\WSE_RasterMosaicDataset&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;WSE_RasterMosaicDataset&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;WSE_RasterMosaicDataset&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Traceback (most recent call last):&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;&amp;nbsp; File "G:\Documents\GIS\HydstraData\AddRasterMosaicToCurrentMap_20140107.py", line 20, in &amp;lt;module&amp;gt;&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; arcpy.mapping.UpdateLayer(df,Surface_lyr,SourceLayer,True)&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;&amp;nbsp; File "c:\program files (x86)\arcgis\desktop10.2\arcpy\arcpy\utils.py", line 181, in fn_&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; return fn(*args, **kw)&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;&amp;nbsp; File "c:\program files (x86)\arcgis\desktop10.2\arcpy\arcpy\mapping.py", line 1878, in UpdateLayer&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; tl._update(rl, symbology_only)&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;ValueError: LayerObject: Unexpected error&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Failed to execute (AddRaster).&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;Failed at Wed Jan 08 09:48:35 2014 (Elapsed Time: 1.31 seconds)&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sat, 11 Dec 2021 08:41:11 GMT</pubDate>
      <guid>https://community.esri.com/t5/python-questions/applysymbologyfromlayer-not-working-for-raster/m-p/166478#M12838</guid>
      <dc:creator>JonathanMulder</dc:creator>
      <dc:date>2021-12-11T08:41:11Z</dc:date>
    </item>
    <item>
      <title>Re: ApplySymbologyFromLayer Not Working for Raster Mosaic Dataset</title>
      <link>https://community.esri.com/t5/python-questions/applysymbologyfromlayer-not-working-for-raster/m-p/166479#M12839</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;I'm still trying to get this to work and have rem'd out some lines of the code to do some "bench-testing". In the following code, I'm just simply adding a layer file of the Raster Mosaic Dataset. The saved lyr file does have "Graduated Colors". But when I test for "GRADUATED_COLORS", I get back the error "The attribute 'symbologyType' is not supported on this instance of Layer."Is this because I'm not drilling into the Raster Mosaic Dataset and not explicitly addressing the Image layer of the Dataset?&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt; When a Raster Mosaic Dataset is added to a map, it comes across almost like a "group" comprised of Boundary, Footprint, and Image. How can I test the Image portion of the layer for "GRADUATED_COLORS"?&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Thanks,&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;Jon Mulder&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;PRE class="lia-code-sample line-numbers language-none"&gt;import arcpy
import arcpy.mapping
import datetime
import os

##Reference the Current map document.
mxd = arcpy.mapping.MapDocument("CURRENT")
df = arcpy.mapping.ListDataFrames(mxd)[0]
GeoDatabaseNameAndLocation = r"G:\Documents\GIS\HydstraData\HydstraMeasurementsDeep\Contours_Daily_20130630_20130705.gdb"
LayerFileNameAndLocation_WSE_Surface = r"G:\Documents\GIS\HydstraData\Template_WSE_Surface.lyr"
arcpy.AddMessage(LayerFileNameAndLocation_WSE_Surface)
CurrentSurface = os.path.join(GeoDatabaseNameAndLocation,"WSE_RasterMosaicDataset")
arcpy.AddMessage(CurrentSurface)
Surface_lyr = arcpy.mapping.Layer(LayerFileNameAndLocation_WSE_Surface)
##Surface_lyr.replaceDataSource(GeoDatabaseNameAndLocation,"FILEGDB_WORKSPACE")
##Surface_lyr = arcpy.mapping.ListLayers(mxd, "WSE_RasterMosaicDataset", df)[0]
##SourceLayer = arcpy.mapping.Layer(r"G:\Documents\GIS\HydstraData\Template_WSE_Surface.lyr")
arcpy.AddMessage(Surface_lyr)
##arcpy.AddMessage(SourceLayer)
##arcpy.mapping.UpdateLayer(df,Surface_lyr,SourceLayer,True)
arcpy.mapping.AddLayer(df, Surface_lyr, "BOTTOM")
##arcpy.mapping.layer.save()

if Surface_lyr.symbologyType == "GRADUATED_COLORS":
&amp;nbsp;&amp;nbsp;&amp;nbsp; arcpy.AddMessage("GRADUATED_COLORS are supported.")
else:&amp;nbsp;&amp;nbsp;&amp;nbsp; 
&amp;nbsp;&amp;nbsp;&amp;nbsp; arcpy.AddMessage("GRADUATED_COLORS are NOT supported.")&lt;/PRE&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sun, 12 Dec 2021 16:07:57 GMT</pubDate>
      <guid>https://community.esri.com/t5/python-questions/applysymbologyfromlayer-not-working-for-raster/m-p/166479#M12839</guid>
      <dc:creator>JonathanMulder</dc:creator>
      <dc:date>2021-12-12T16:07:57Z</dc:date>
    </item>
    <item>
      <title>Re: ApplySymbologyFromLayer Not Working for Raster Mosaic Dataset</title>
      <link>https://community.esri.com/t5/python-questions/applysymbologyfromlayer-not-working-for-raster/m-p/166480#M12840</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;I may have missed this, but have you tried using Make Raster Layer using your mosaic dataset as input, then saving that output to a layer file to use when replacing the layer in the TOC of your map (via UpdateLayer, if I'm following)?&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;This is per Jake's instructions in the previous post; I'll leave it to you to test if you haven't already.&amp;nbsp; Here's the doc and I'm guessing the data type for a mosaic is as in the documentation, a 'composite geodataset':&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;A href="http://resources.arcgis.com/en/help/main/10.2/index.html#//00170000006t000000"&gt;http://resources.arcgis.com/en/help/main/10.2/index.html#//00170000006t000000&lt;/A&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Wayne&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 09 Jan 2014 22:08:51 GMT</pubDate>
      <guid>https://community.esri.com/t5/python-questions/applysymbologyfromlayer-not-working-for-raster/m-p/166480#M12840</guid>
      <dc:creator>T__WayneWhitley</dc:creator>
      <dc:date>2014-01-09T22:08:51Z</dc:date>
    </item>
    <item>
      <title>Re: ApplySymbologyFromLayer Not Working for Raster Mosaic Dataset</title>
      <link>https://community.esri.com/t5/python-questions/applysymbologyfromlayer-not-working-for-raster/m-p/166481#M12841</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;Thanks Wayne, I gave that a try.&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;When I used the Make Raster Tool, my Red-Green color ramped Mosaic Dataset was saved as grey-scale color ramp.&amp;nbsp; So, I modified the color ramp of the newly created layer file to Red-Green.&amp;nbsp; Finally, I SAVED the in-memory layer file to a lyr on disk.&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;I looked at the lyr in ArcCatalog, and this is the datasource (which seems rather odd!):&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Data Type:&amp;nbsp; File System Raster&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;Folder:&amp;nbsp; C:\Users\mulder\AppData\Local\Temp\arcF6F\&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;Raster:&amp;nbsp; x40372eb8_2a96_4484_8419_83ecd66908f6y0.afr&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;So I tried to Change Datasource and navigated into my GeoDatabase and tried to click on the Raster Mosaic Dataset, but it won't accept it.&amp;nbsp; I tried to set datasource to a single raster and that did take.&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Jon Mulder&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;PS&amp;nbsp;&amp;nbsp; Can I send you a sample geodatabase and the relvany lyr files?&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 09 Jan 2014 22:37:04 GMT</pubDate>
      <guid>https://community.esri.com/t5/python-questions/applysymbologyfromlayer-not-working-for-raster/m-p/166481#M12841</guid>
      <dc:creator>JonathanMulder</dc:creator>
      <dc:date>2014-01-09T22:37:04Z</dc:date>
    </item>
    <item>
      <title>Re: ApplySymbologyFromLayer Not Working for Raster Mosaic Dataset</title>
      <link>https://community.esri.com/t5/python-questions/applysymbologyfromlayer-not-working-for-raster/m-p/166482#M12842</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;Yes I'm interested...&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;If you can, clip the source rasters and mosaic, whatever you have, just to give me a sample (if you don't mind) along with the relative-sourced lyr files and an mxd, maybe your py files, and if you would please just zip it into a single root folder (makes it easier to send back to you).&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;....then later, when all's done, I want to see the project, if that's okay with you!&amp;nbsp; I've never done or even seen the time-slider stuff, lol, just read about it!&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Wayne&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;PS- Curious about this, is there the ability to export a gif or some sort of media animation file from the time-enabled data frame, or at least with enough 'snapshots' in time to assimilate into some sort of animation?&amp;nbsp;&amp;nbsp; hmmm...get to that later.&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 09 Jan 2014 23:06:23 GMT</pubDate>
      <guid>https://community.esri.com/t5/python-questions/applysymbologyfromlayer-not-working-for-raster/m-p/166482#M12842</guid>
      <dc:creator>T__WayneWhitley</dc:creator>
      <dc:date>2014-01-09T23:06:23Z</dc:date>
    </item>
    <item>
      <title>Re: ApplySymbologyFromLayer Not Working for Raster Mosaic Dataset</title>
      <link>https://community.esri.com/t5/python-questions/applysymbologyfromlayer-not-working-for-raster/m-p/166483#M12843</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;...sorry I did not see this - you should perhaps try the Make Mosaic Layer tool, which accepts an input mosaic dataset:&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;A href="http://resources.arcgis.com/en/help/main/10.2/index.html#/Make_Mosaic_Layer/0017000000vm000000/"&gt;http://resources.arcgis.com/en/help/main/10.2/index.html#/Make_Mosaic_Layer/0017000000vm000000/&lt;/A&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 09 Jan 2014 23:52:10 GMT</pubDate>
      <guid>https://community.esri.com/t5/python-questions/applysymbologyfromlayer-not-working-for-raster/m-p/166483#M12843</guid>
      <dc:creator>T__WayneWhitley</dc:creator>
      <dc:date>2014-01-09T23:52:10Z</dc:date>
    </item>
  </channel>
</rss>

