While attempting to use the labels described within this repo, it became apparent that a couple optimizations are advisable:
- Because the data has 3 possible values (-1, 0, 1), the use of int16 tifs is significant overkill. A byte tif (int8) would save considerable space/transfer time
- At the moment, these tifs have a
NoData value of −32768. It is likely more appropriate for these tifs to have a NoData value of -1, given the fact that this tracks the advertised semantics more closely and experience teaches that incorrectly set NoData values are sometimes problematic for downstream processes
While attempting to use the labels described within this repo, it became apparent that a couple optimizations are advisable:
NoDatavalue of −32768. It is likely more appropriate for these tifs to have aNoDatavalue of -1, given the fact that this tracks the advertised semantics more closely and experience teaches that incorrectly setNoDatavalues are sometimes problematic for downstream processes