ua-snap / ardac-explorer

ARDAC GUI Explorer
0 stars 0 forks source link

Fix color maps of permafrost items #73

Closed cstephen closed 5 months ago

cstephen commented 5 months ago

This was fixed by changing the lowest color map value from 0 to 0.0001.

I..e, the permafrost base color map changed from:

{ "type": "intervals", "colorTable": { "-9999": [0, 0, 0, 0], "0": [255,255,204,255], "100": [161,218,180,255], "200": [65,182,196,255], "300": [44,127,184,255], "400": [37,52,148,255] } }

To:

{ "type": "intervals", "colorTable": { "-9999": [0, 0, 0, 0], "0.0001": [255,255,204,255], "100": [161,218,180,255], "200": [65,182,196,255], "300": [44,127,184,255], "400": [37,52,148,255] } }

And the permafrost top color map changed from:

{ "type": "intervals", "colorTable": { "-9999": [0, 0, 0, 0], "0": [37,52,148,255], "1": [44,127,184,255], "2": [65,182,196,255], "3": [161,218,180,255], "4": [255,255,204,255] } }

To:

{ "type": "intervals", "colorTable": { "-9999": [0, 0, 0, 0], "0.0001": [37,52,148,255], "1": [44,127,184,255], "2": [65,182,196,255], "3": [161,218,180,255], "4": [255,255,204,255] } }