Skip to content

Commit

Permalink
chore: fix cams maps final date
Browse files Browse the repository at this point in the history
  • Loading branch information
lubojr committed Mar 26, 2024
1 parent 31fb42a commit d46c297
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions app/src/config/esa.js
Original file line number Diff line number Diff line change
Expand Up @@ -1223,7 +1223,7 @@ export const globalIndicators = [
type: 'FeatureCollection',
features: [],
},
time: getDailyDates(DateTime.utc().minus({ years: 1, days: -1 }).toFormat('yyyy-LL-dd'), DateTime.utc().minus({ days: 2 }).toFormat('yyyy-LL-dd')),
time: getDailyDates(DateTime.utc().minus({ years: 1, days: -1 }).toFormat('yyyy-LL-dd'), '2023-11-28'),
inputData: [''],
yAxis: 'NO2 (μmol/m2)',
display: {
Expand Down Expand Up @@ -1256,7 +1256,7 @@ export const globalIndicators = [
type: 'FeatureCollection',
features: [],
},
time: getDailyDates(DateTime.utc().minus({ years: 1, days: -1 }).toFormat('yyyy-LL-dd'), DateTime.utc().minus({ days: 2 }).toFormat('yyyy-LL-dd')),
time: getDailyDates(DateTime.utc().minus({ years: 1, days: -1 }).toFormat('yyyy-LL-dd'), '2023-11-28'),
inputData: [''],
yAxis: 'PM2.5 (μg/m3)',
display: {
Expand Down Expand Up @@ -1289,7 +1289,7 @@ export const globalIndicators = [
type: 'FeatureCollection',
features: [],
},
time: getDailyDates(DateTime.utc().minus({ years: 1, days: -1 }).toFormat('yyyy-LL-dd'), DateTime.utc().minus({ days: 2 }).toFormat('yyyy-LL-dd')),
time: getDailyDates(DateTime.utc().minus({ years: 1, days: -1 }).toFormat('yyyy-LL-dd'), '2023-11-28'),
inputData: [''],
yAxis: 'PM10 (μg/m3)',
display: {
Expand Down Expand Up @@ -1322,7 +1322,7 @@ export const globalIndicators = [
type: 'FeatureCollection',
features: [],
},
time: getDailyDates(DateTime.utc().minus({ years: 1, days: -1 }).toFormat('yyyy-LL-dd'), DateTime.utc().minus({ days: 2 }).toFormat('yyyy-LL-dd')),
time: getDailyDates(DateTime.utc().minus({ years: 1, days: -1 }).toFormat('yyyy-LL-dd'), '2023-11-28'),
inputData: [''],
yAxis: 'O3 (μg/m3)',
display: {
Expand Down

0 comments on commit d46c297

Please sign in to comment.