Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

  1. Copy the entire contents of https://github.com/Esri/mdcs-py/blob/master/scripts/ to working directory.
  2. Modify raster_type section of MDCS.xml.

    Code Block
    languagexml
    <!-- AR - Add Rasters-->
      <AddRasters>
    	<AddRaster>
              <dataset_id>power</dataset_id>
              <raster_type>Table / Raster Catalog</raster_type>
    
    
  3. Specify table (in CSV) location.

    Code Block
    languagexml
              <Sources>
                <data_path>Z:\home\arcgis\data\LC08.csv</data_path>
              </Sources>
  4. Edit the raster column of .csv file. It must be local and a raster proxy. You can test a sample raster proxy file from [2].

    Code Block
    OBJECTID,Variable,StdTime,StdTime_Max,StdZ,Raster
    0,ALL_SFC_SW_DN,2018-01-01 00:00:00,2018-01-01 00:59:59,2,"Z:\home\arcgis\data\LC08_L1TP_160043_20180326_20180404_01_T1\LC08_L1TP_160043_20180326_20180404_01_T1_B1.TIF"

...