Skip to content

Commit

Permalink
Updated the web page pollutant list.
Browse files Browse the repository at this point in the history
  • Loading branch information
dbeaudoinfortin committed Nov 1, 2024
1 parent 51626ce commit 58df28a
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion docs/integrated_datamap.js

Large diffs are not rendered by default.

Original file line number Diff line number Diff line change
Expand Up @@ -74,7 +74,7 @@ private void exportData() throws IOException {
//Generate a multi-dimensional lookup table
Map<String, Map<Integer, Set<Integer>>> dataMap = new HashMap<String, Map<Integer, Set<Integer>>>();
dataGroups.stream().forEach(r->{
dataMap.computeIfAbsent(r.getPollutantName(), p->new HashMap<Integer, Set<Integer>>())
dataMap.computeIfAbsent(r.getPollutantName().replace("/", "_"), p->new HashMap<Integer, Set<Integer>>())
.computeIfAbsent(r.getYear(), y->new TreeSet<Integer>())
.add(r.getSiteID());
});
Expand Down

0 comments on commit 58df28a

Please sign in to comment.