Tell me more ×
Geographic Information Systems Stack Exchange is a question and answer site for cartographers, geographers and GIS professionals. It's 100% free, no registration required.

I am trying to create a raster mosiac for use in animating data over time. The current workflow is:

  • Create .gdb (arcpy.CreateFileGDB_management)
  • Create Raster Mosaic (arcpy.CreateMosaicDataset_management)
  • Add rasters to mosaic (arcpy.AddRastersToMosaicDataset_management)

The above are all working well.

Next I created a new "date" field in the Footprint feature class. What I would like is to do now is for each row in the Footprint table to add a time into the date field. However I seem to be unable to do this. I assume it is because the Footprint layer is treated different than a normal feature class? Do I need to use a footprint specific command (arcpy.BuildFootprints_management)?

Thanks for any help.

Edit: fixed typo.

share|improve this question

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Browse other questions tagged or ask your own question.