Skip to content

Commit

Permalink
Refactor layer-data-eic.js: Remove unused thermal anomaly layers
Browse files Browse the repository at this point in the history
This commit removes the unused thermal anomaly layers, VIIRS_NOAA21_Thermal_Anomalies_375m_All and VIIRS_NOAA20_Thermal_Anomalies_375m_All, from the layersToMeasure, layerPixelData, and bestDates arrays in the layer-data-eic.js file. These layers are no longer needed and can be safely removed.
  • Loading branch information
PatchesMaps committed Oct 7, 2024
1 parent 630b181 commit 602b9eb
Showing 1 changed file with 0 additions and 6 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -24,8 +24,6 @@ export const layersToMeasure = [
'VIIRS_NOAA20_DayNightBand_AtSensor_M15',
'VIIRS_NOAA20_AOT_Deep_Blue_Best_Estimate',
'VIIRS_NOAA20_AOT_Dark_Target_Land_Ocean',
'VIIRS_NOAA21_Thermal_Anomalies_375m_All',
'VIIRS_NOAA20_Thermal_Anomalies_375m_All',
'VIIRS_NOAA21_CorrectedReflectance_TrueColor',
];

Expand Down Expand Up @@ -56,8 +54,6 @@ export const layerPixelData = {
VIIRS_NOAA20_DayNightBand_AtSensor_M15: { threshold: 0.10 },
VIIRS_NOAA20_AOT_Deep_Blue_Best_Estimate: { threshold: 0.90 },
VIIRS_NOAA20_AOT_Dark_Target_Land_Ocean: { threshold: 0.90 },
VIIRS_NOAA21_Thermal_Anomalies_375m_All: { threshold: 0.95 },
VIIRS_NOAA20_Thermal_Anomalies_375m_All: { threshold: 0.95 },
VIIRS_NOAA21_CorrectedReflectance_TrueColor: { threshold: 0.65 },
};

Expand Down Expand Up @@ -87,8 +83,6 @@ export const bestDates = {
VIIRS_NOAA20_DayNightBand_AtSensor_M15: { date: '2024-10-01' },
VIIRS_NOAA20_AOT_Deep_Blue_Best_Estimate: { date: '2024-10-01' },
VIIRS_NOAA20_AOT_Dark_Target_Land_Ocean: { date: '2024-10-01' },
VIIRS_NOAA21_Thermal_Anomalies_375m_All: { date: '2024-10-01' },
VIIRS_NOAA20_Thermal_Anomalies_375m_All: { date: '2024-10-01' },
VIIRS_NOAA21_CorrectedReflectance_TrueColor: { date: '2024-10-01' },
};

Expand Down

0 comments on commit 602b9eb

Please sign in to comment.