| | |
| | | hashMap.put("TVOC", "");
|
| | | hashMap.put("altitude", "");
|
| | | hashMap.put("vegetation", "");
|
| | | hashMap.put("river", "");
|
| | | hashMap.put("AQI", "");
|
| | | hashMap.put("SO2C", "");
|
| | | hashMap.put("NO2C", "");
|
| | |
| | | map.put("SO2C", map.get("SO2").toString());
|
| | | }
|
| | | if ((!map.containsKey("NO2C")) && map.containsKey("NO2")) {
|
| | | map.put("SO2C", map.get("SO2").toString());
|
| | | map.put("NO2C", map.get("NO2C").toString());
|
| | | }
|
| | | if ((!map.containsKey("O3C")) && map.containsKey("O3")) {
|
| | | map.put("O3C", map.get("O3").toString());
|
| | |
| | | if ((!map.containsKey("COC")) && map.containsKey("CO")) {
|
| | | map.put("COC", map.get("CO").toString());
|
| | | }
|
| | | if ((!map.containsKey("PM25C")) && map.containsKey("PM25")) {
|
| | | map.put("PM25C", map.get("PM25").toString());
|
| | | if ((!map.containsKey("PM25C")) && map.containsKey("PM2_5")) {
|
| | | map.put("PM25C", map.get("PM2_5").toString());
|
| | | }
|
| | | if ((!map.containsKey("PM10C")) && map.containsKey("PM10")) {
|
| | | map.put("PM10C", map.get("PM10").toString());
|