Skip to content

Commit

Permalink
Changed MEaSUREs layers to immutable: false & removed logging
Browse files Browse the repository at this point in the history
  • Loading branch information
Tomcariello committed Aug 15, 2023
1 parent fc895c4 commit 5284ea0
Show file tree
Hide file tree
Showing 3 changed files with 2 additions and 10 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@
}
},
"palette": {
"immutable": true
"immutable": false
}
}
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
"group": "overlays",
"layergroup": "Freeze/Thaw",
"palette": {
"immutable": true
"immutable": false
}
}
}
Expand Down
8 changes: 0 additions & 8 deletions tasks/build-options/processColormap.js
Original file line number Diff line number Diff line change
Expand Up @@ -68,10 +68,6 @@ async function main () {
for (const file of files) {
try {
const { id, xml } = await readFileAsync(file)
if (id === 'MODIS_Water_Mask') {
console.warn(`------Processing ${id}`)
console.warn(file)
}
await processFile(id, xml)
fileCount += 1
} catch (error) {
Expand Down Expand Up @@ -321,10 +317,6 @@ async function readFileAsync (file) {
* xml [string] represention of this product's xml colormap file (served from GIBS)
*/
async function processFile (id, xml) {
if (id === 'MODIS_Water_Mask') {
console.warn(`Processing ${id}`)
console.warn(xml)
}
let document
let colormaps = []
try {
Expand Down

0 comments on commit 5284ea0

Please sign in to comment.