AstroDigital / modis-ingestor

Scripts and other artifacts for MODIS data ingestion into Amazon public hosting.
MIT License
14 stars 2 forks source link

File names #11

Closed akudrya closed 7 years ago

akudrya commented 7 years ago

@drewbo thanks a lot for the presentation.

The product looks amazing.

2 minor issues I'd mention with file names:

  1. _ char may cause some problems. e.g. rasterio by default doesn't accept it in file names.
  2. There is a little bit of confusion between the folder structure and the list of bands on USGS. Is B00 the QA band? Are other band numbers match to file names?
matthewhanson commented 7 years ago

@akudrya Right now those are band indexes, they should all be increased by one, am pushing a change shortly.

drewbo commented 7 years ago

Also @akudrya the bands correspond to the specific product type here: https://lpdaac.usgs.gov/dataset_discovery/modis/modis_products_table/mcd43a4_v006

akudrya commented 7 years ago

@drewbo

_ char may cause some problems. e.g. rasterio by default doesn't accept it in file names.

Wasn't reproduced. Rasterio accepts _. Thanks for your guidance.