diff --git a/ohsome_quality_api/indicators/attribute_completeness/indicator.py b/ohsome_quality_api/indicators/attribute_completeness/indicator.py index 2eed96464..62c2beb98 100644 --- a/ohsome_quality_api/indicators/attribute_completeness/indicator.py +++ b/ohsome_quality_api/indicators/attribute_completeness/indicator.py @@ -188,6 +188,21 @@ def create_figure(self) -> None: fig.update_xaxes(visible=False) fig.update_yaxes(visible=False) + fig.add_layout_image( + dict( + source="https://raw.githubusercontent.com/GIScience/ohsome-quality-api/refs/heads/figure_background_logo/ohsome_quality_api/indicators/heigit_logo.png", + xref="paper", + yref="paper", + x=0.9, + y=-0.03, + sizex=0.2, + sizey=0.2, + sizing="contain", + opacity=0.3, + layer="below", + ) + ) + raw = fig.to_dict() raw["layout"].pop("template") # remove boilerplate self.result.figure = raw diff --git a/ohsome_quality_api/indicators/building_comparison/indicator.py b/ohsome_quality_api/indicators/building_comparison/indicator.py index da8b7b609..3fc042106 100644 --- a/ohsome_quality_api/indicators/building_comparison/indicator.py +++ b/ohsome_quality_api/indicators/building_comparison/indicator.py @@ -233,6 +233,21 @@ def create_figure(self) -> None: } fig.update_layout(**layout) + fig.add_layout_image( + dict( + source="https://raw.githubusercontent.com/GIScience/ohsome-quality-api/refs/heads/figure_background_logo/ohsome_quality_api/indicators/heigit_logo.png", + xref="paper", + yref="paper", + x=0.8, + y=-0.1, + sizex=0.2, + sizey=0.2, + sizing="contain", + opacity=0.3, + layer="below", + ) + ) + raw = fig.to_dict() raw["layout"].pop("template") # remove boilerplate self.result.figure = raw diff --git a/ohsome_quality_api/indicators/currentness/indicator.py b/ohsome_quality_api/indicators/currentness/indicator.py index b007e03c9..773454378 100644 --- a/ohsome_quality_api/indicators/currentness/indicator.py +++ b/ohsome_quality_api/indicators/currentness/indicator.py @@ -269,6 +269,21 @@ def create_figure(self): bgcolor="rgba(255,255,255,0.66)", ) + fig.add_layout_image( + dict( + source="https://raw.githubusercontent.com/GIScience/ohsome-quality-api/refs/heads/figure_background_logo/ohsome_quality_api/indicators/heigit_logo.png", + xref="paper", + yref="paper", + x=0.8, + y=-0.1, + sizex=0.2, + sizey=0.2, + sizing="contain", + opacity=0.3, + layer="below", + ) + ) + raw = fig.to_dict() raw["layout"].pop("template") # remove boilerplate self.result.figure = raw diff --git a/ohsome_quality_api/indicators/land_cover_completeness/indicator.py b/ohsome_quality_api/indicators/land_cover_completeness/indicator.py index b6efdb0cc..7c414ed41 100644 --- a/ohsome_quality_api/indicators/land_cover_completeness/indicator.py +++ b/ohsome_quality_api/indicators/land_cover_completeness/indicator.py @@ -107,6 +107,20 @@ def create_figure(self) -> None: fig.update_xaxes(visible=False) fig.update_yaxes(visible=False) + fig.add_layout_image( + dict( + source="https://raw.githubusercontent.com/GIScience/ohsome-quality-api/refs/heads/figure_background_logo/ohsome_quality_api/indicators/heigit_logo.png", + xref="paper", + yref="paper", + x=0.9, + y=-0.03, + sizex=0.2, + sizey=0.2, + sizing="contain", + opacity=0.3, + layer="below", + ) + ) raw = fig.to_dict() raw["layout"].pop("template") # remove boilerplate self.result.figure = raw diff --git a/ohsome_quality_api/indicators/land_cover_thematic_accuracy/indicator.py b/ohsome_quality_api/indicators/land_cover_thematic_accuracy/indicator.py index 5facc9d36..6e504d9de 100644 --- a/ohsome_quality_api/indicators/land_cover_thematic_accuracy/indicator.py +++ b/ohsome_quality_api/indicators/land_cover_thematic_accuracy/indicator.py @@ -265,6 +265,21 @@ def _create_figure_multi_class(self): ), ) + fig.add_layout_image( + dict( + source="https://raw.githubusercontent.com/GIScience/ohsome-quality-api/refs/heads/figure_background_logo/ohsome_quality_api/indicators/heigit_logo.png", + xref="paper", + yref="paper", + x=0.8, + y=-0.1, + sizex=0.2, + sizey=0.2, + sizing="contain", + opacity=0.3, + layer="below", + ) + ) + raw = fig.to_dict() raw["layout"].pop("template") # remove boilerplate self.result.figure = raw @@ -347,6 +362,22 @@ def _create_figure_single_class(self): ) fig.update_xaxes(visible=False) fig.update_yaxes(visible=False) + + fig.add_layout_image( + dict( + source="https://raw.githubusercontent.com/GIScience/ohsome-quality-api/refs/heads/figure_background_logo/ohsome_quality_api/indicators/heigit_logo.png", + xref="paper", + yref="paper", + x=0.75, + y=0.2, + sizex=0.2, + sizey=0.2, + sizing="contain", + opacity=0.3, + layer="below", + ) + ) + raw = fig.to_dict() raw["layout"].pop("template") # remove boilerplate self.result.figure = raw diff --git a/ohsome_quality_api/indicators/mapping_saturation/indicator.py b/ohsome_quality_api/indicators/mapping_saturation/indicator.py index 455b378c8..a59541b2a 100644 --- a/ohsome_quality_api/indicators/mapping_saturation/indicator.py +++ b/ohsome_quality_api/indicators/mapping_saturation/indicator.py @@ -208,6 +208,21 @@ def create_figure(self) -> None: # fixed legend, because we do not expect high contributions in 2008 fig.update_legends(x=0.02, y=0.85, bgcolor="rgba(255,255,255,0.66)") + fig.add_layout_image( + dict( + source="https://raw.githubusercontent.com/GIScience/ohsome-quality-api/refs/heads/figure_background_logo/ohsome_quality_api/indicators/heigit_logo.png", + xref="paper", + yref="paper", + x=0.8, + y=-0.1, + sizex=0.2, + sizey=0.2, + sizing="contain", + opacity=0.3, + layer="below", + ) + ) + raw = fig.to_dict() raw["layout"].pop("template") # remove boilerplate self.result.figure = raw diff --git a/ohsome_quality_api/indicators/road_comparison/indicator.py b/ohsome_quality_api/indicators/road_comparison/indicator.py index 97e803595..c89fcc6c3 100644 --- a/ohsome_quality_api/indicators/road_comparison/indicator.py +++ b/ohsome_quality_api/indicators/road_comparison/indicator.py @@ -226,6 +226,21 @@ def create_figure(self) -> None: ), ) + fig.add_layout_image( + dict( + source="https://raw.githubusercontent.com/GIScience/ohsome-quality-api/refs/heads/figure_background_logo/ohsome_quality_api/indicators/heigit_logo.png", + xref="paper", + yref="paper", + x=0.8, + y=-0.1, + sizex=0.2, + sizey=0.2, + sizing="contain", + opacity=0.3, + layer="below", + ) + ) + raw = fig.to_dict() raw["layout"].pop("template") # remove boilerplate self.result.figure = raw diff --git a/tests/approvals/integrationtests/indicators/test_attribute_completeness.py-TestFigure-test_create_figure[indicator0].approved.json b/tests/approvals/integrationtests/indicators/test_attribute_completeness.py-TestFigure-test_create_figure[indicator0].approved.json index cd547db02..ec48195a7 100644 --- a/tests/approvals/integrationtests/indicators/test_attribute_completeness.py-TestFigure-test_create_figure[indicator0].approved.json +++ b/tests/approvals/integrationtests/indicators/test_attribute_completeness.py-TestFigure-test_create_figure[indicator0].approved.json @@ -66,6 +66,20 @@ "color": "black", "family": "Arial" }, + "images": [ + { + "layer": "below", + "opacity": 0.3, + "sizex": 0.2, + "sizey": 0.2, + "sizing": "contain", + "source": "https://raw.githubusercontent.com/GIScience/ohsome-quality-api/refs/heads/figure_background_logo/ohsome_quality_api/indicators/heigit_logo.png", + "x": 0.9, + "xref": "paper", + "y": -0.03, + "yref": "paper" + } + ], "plot_bgcolor": "rgba(0,0,0,0)", "xaxis": { "fixedrange": true, diff --git a/tests/approvals/integrationtests/indicators/test_attribute_completeness.py-TestFigure-test_create_figure[indicator1].approved.json b/tests/approvals/integrationtests/indicators/test_attribute_completeness.py-TestFigure-test_create_figure[indicator1].approved.json index cd547db02..ec48195a7 100644 --- a/tests/approvals/integrationtests/indicators/test_attribute_completeness.py-TestFigure-test_create_figure[indicator1].approved.json +++ b/tests/approvals/integrationtests/indicators/test_attribute_completeness.py-TestFigure-test_create_figure[indicator1].approved.json @@ -66,6 +66,20 @@ "color": "black", "family": "Arial" }, + "images": [ + { + "layer": "below", + "opacity": 0.3, + "sizex": 0.2, + "sizey": 0.2, + "sizing": "contain", + "source": "https://raw.githubusercontent.com/GIScience/ohsome-quality-api/refs/heads/figure_background_logo/ohsome_quality_api/indicators/heigit_logo.png", + "x": 0.9, + "xref": "paper", + "y": -0.03, + "yref": "paper" + } + ], "plot_bgcolor": "rgba(0,0,0,0)", "xaxis": { "fixedrange": true, diff --git a/tests/approvals/integrationtests/indicators/test_building_comparison.py-TestFigure-test_create_figure.approved.json b/tests/approvals/integrationtests/indicators/test_building_comparison.py-TestFigure-test_create_figure.approved.json index 20b68ca64..f4dc71af9 100644 --- a/tests/approvals/integrationtests/indicators/test_building_comparison.py-TestFigure-test_create_figure.approved.json +++ b/tests/approvals/integrationtests/indicators/test_building_comparison.py-TestFigure-test_create_figure.approved.json @@ -47,6 +47,20 @@ ], "layout": { "barmode": "group", + "images": [ + { + "layer": "below", + "opacity": 0.3, + "sizex": 0.2, + "sizey": 0.2, + "sizing": "contain", + "source": "https://raw.githubusercontent.com/GIScience/ohsome-quality-api/refs/heads/figure_background_logo/ohsome_quality_api/indicators/heigit_logo.png", + "x": 0.8, + "xref": "paper", + "y": -0.1, + "yref": "paper" + } + ], "legend": { "entrywidth": 270, "orientation": "h", diff --git a/tests/approvals/integrationtests/indicators/test_currentness.py-TestFigure-test_create_figure.approved.json b/tests/approvals/integrationtests/indicators/test_currentness.py-TestFigure-test_create_figure.approved.json index 76f405d7f..ef5479982 100644 --- a/tests/approvals/integrationtests/indicators/test_currentness.py-TestFigure-test_create_figure.approved.json +++ b/tests/approvals/integrationtests/indicators/test_currentness.py-TestFigure-test_create_figure.approved.json @@ -1922,6 +1922,20 @@ } ], "layout": { + "images": [ + { + "layer": "below", + "opacity": 0.3, + "sizex": 0.2, + "sizey": 0.2, + "sizing": "contain", + "source": "https://raw.githubusercontent.com/GIScience/ohsome-quality-api/refs/heads/figure_background_logo/ohsome_quality_api/indicators/heigit_logo.png", + "x": 0.8, + "xref": "paper", + "y": -0.1, + "yref": "paper" + } + ], "legend": { "bgcolor": "rgba(255,255,255,0.66)", "title": { diff --git a/tests/approvals/integrationtests/indicators/test_land_cover_completeness.py-test_create_figure.approved.json b/tests/approvals/integrationtests/indicators/test_land_cover_completeness.py-test_create_figure.approved.json index e9604f43a..5aea116ab 100644 --- a/tests/approvals/integrationtests/indicators/test_land_cover_completeness.py-test_create_figure.approved.json +++ b/tests/approvals/integrationtests/indicators/test_land_cover_completeness.py-test_create_figure.approved.json @@ -66,6 +66,20 @@ "color": "black", "family": "Arial" }, + "images": [ + { + "layer": "below", + "opacity": 0.3, + "sizex": 0.2, + "sizey": 0.2, + "sizing": "contain", + "source": "https://raw.githubusercontent.com/GIScience/ohsome-quality-api/refs/heads/figure_background_logo/ohsome_quality_api/indicators/heigit_logo.png", + "x": 0.9, + "xref": "paper", + "y": -0.03, + "yref": "paper" + } + ], "plot_bgcolor": "rgba(0,0,0,0)", "xaxis": { "fixedrange": true, diff --git a/tests/approvals/integrationtests/indicators/test_land_cover_thematic_accuracy.py-test_figure_multi_class.approved.json b/tests/approvals/integrationtests/indicators/test_land_cover_thematic_accuracy.py-test_figure_multi_class.approved.json index dc080c5de..8da2b5bb8 100644 --- a/tests/approvals/integrationtests/indicators/test_land_cover_thematic_accuracy.py-test_figure_multi_class.approved.json +++ b/tests/approvals/integrationtests/indicators/test_land_cover_thematic_accuracy.py-test_figure_multi_class.approved.json @@ -193,6 +193,20 @@ ], "layout": { "autotypenumbers": "strict", + "images": [ + { + "layer": "below", + "opacity": 0.3, + "sizex": 0.2, + "sizey": 0.2, + "sizing": "contain", + "source": "https://raw.githubusercontent.com/GIScience/ohsome-quality-api/refs/heads/figure_background_logo/ohsome_quality_api/indicators/heigit_logo.png", + "x": 0.8, + "xref": "paper", + "y": -0.1, + "yref": "paper" + } + ], "showlegend": false, "xaxis": { "range": [ diff --git a/tests/approvals/integrationtests/indicators/test_land_cover_thematic_accuracy.py-test_figure_single_class.approved.json b/tests/approvals/integrationtests/indicators/test_land_cover_thematic_accuracy.py-test_figure_single_class.approved.json index 478c3002e..ed5c71242 100644 --- a/tests/approvals/integrationtests/indicators/test_land_cover_thematic_accuracy.py-test_figure_single_class.approved.json +++ b/tests/approvals/integrationtests/indicators/test_land_cover_thematic_accuracy.py-test_figure_single_class.approved.json @@ -66,6 +66,20 @@ ], "layout": { "barmode": "stack", + "images": [ + { + "layer": "below", + "opacity": 0.3, + "sizex": 0.2, + "sizey": 0.2, + "sizing": "contain", + "source": "https://raw.githubusercontent.com/GIScience/ohsome-quality-api/refs/heads/figure_background_logo/ohsome_quality_api/indicators/heigit_logo.png", + "x": 0.75, + "xref": "paper", + "y": 0.2, + "yref": "paper" + } + ], "legend": { "orientation": "h", "x": 0, diff --git a/tests/approvals/integrationtests/indicators/test_mapping_saturation.py-TestFigure-test_create_figure.approved.json b/tests/approvals/integrationtests/indicators/test_mapping_saturation.py-TestFigure-test_create_figure.approved.json index 43f61bbe1..bca12b961 100644 --- a/tests/approvals/integrationtests/indicators/test_mapping_saturation.py-TestFigure-test_create_figure.approved.json +++ b/tests/approvals/integrationtests/indicators/test_mapping_saturation.py-TestFigure-test_create_figure.approved.json @@ -1 +1 @@ -{"data": [{"line": {"color": "#2185D0"}, "name": "OSM data", "type": "scatter", "x": ["2008-01-01T00:00:00Z", "2008-02-01T00:00:00Z", "2008-03-01T00:00:00Z", "2008-04-01T00:00:00Z", "2008-05-01T00:00:00Z", "2008-06-01T00:00:00Z", "2008-07-01T00:00:00Z", "2008-08-01T00:00:00Z", "2008-09-01T00:00:00Z", "2008-10-01T00:00:00Z", "2008-11-01T00:00:00Z", "2008-12-01T00:00:00Z", "2009-01-01T00:00:00Z", "2009-02-01T00:00:00Z", "2009-03-01T00:00:00Z", "2009-04-01T00:00:00Z", "2009-05-01T00:00:00Z", "2009-06-01T00:00:00Z", "2009-07-01T00:00:00Z", "2009-08-01T00:00:00Z", "2009-09-01T00:00:00Z", "2009-10-01T00:00:00Z", "2009-11-01T00:00:00Z", "2009-12-01T00:00:00Z", "2010-01-01T00:00:00Z", "2010-02-01T00:00:00Z", "2010-03-01T00:00:00Z", "2010-04-01T00:00:00Z", "2010-05-01T00:00:00Z", "2010-06-01T00:00:00Z", "2010-07-01T00:00:00Z", "2010-08-01T00:00:00Z", "2010-09-01T00:00:00Z", "2010-10-01T00:00:00Z", "2010-11-01T00:00:00Z", "2010-12-01T00:00:00Z", "2011-01-01T00:00:00Z", "2011-02-01T00:00:00Z", "2011-03-01T00:00:00Z", "2011-04-01T00:00:00Z", "2011-05-01T00:00:00Z", "2011-06-01T00:00:00Z", "2011-07-01T00:00:00Z", "2011-08-01T00:00:00Z", "2011-09-01T00:00:00Z", "2011-10-01T00:00:00Z", "2011-11-01T00:00:00Z", "2011-12-01T00:00:00Z", "2012-01-01T00:00:00Z", "2012-02-01T00:00:00Z", "2012-03-01T00:00:00Z", "2012-04-01T00:00:00Z", "2012-05-01T00:00:00Z", "2012-06-01T00:00:00Z", "2012-07-01T00:00:00Z", "2012-08-01T00:00:00Z", "2012-09-01T00:00:00Z", "2012-10-01T00:00:00Z", "2012-11-01T00:00:00Z", "2012-12-01T00:00:00Z", "2013-01-01T00:00:00Z", "2013-02-01T00:00:00Z", "2013-03-01T00:00:00Z", "2013-04-01T00:00:00Z", "2013-05-01T00:00:00Z", "2013-06-01T00:00:00Z", "2013-07-01T00:00:00Z", "2013-08-01T00:00:00Z", "2013-09-01T00:00:00Z", "2013-10-01T00:00:00Z", "2013-11-01T00:00:00Z", "2013-12-01T00:00:00Z", "2014-01-01T00:00:00Z", "2014-02-01T00:00:00Z", "2014-03-01T00:00:00Z", "2014-04-01T00:00:00Z", "2014-05-01T00:00:00Z", "2014-06-01T00:00:00Z", "2014-07-01T00:00:00Z", "2014-08-01T00:00:00Z", "2014-09-01T00:00:00Z", "2014-10-01T00:00:00Z", "2014-11-01T00:00:00Z", "2014-12-01T00:00:00Z", "2015-01-01T00:00:00Z", "2015-02-01T00:00:00Z", "2015-03-01T00:00:00Z", "2015-04-01T00:00:00Z", "2015-05-01T00:00:00Z", "2015-06-01T00:00:00Z", "2015-07-01T00:00:00Z", "2015-08-01T00:00:00Z", "2015-09-01T00:00:00Z", "2015-10-01T00:00:00Z", "2015-11-01T00:00:00Z", "2015-12-01T00:00:00Z", "2016-01-01T00:00:00Z", "2016-02-01T00:00:00Z", "2016-03-01T00:00:00Z", "2016-04-01T00:00:00Z", "2016-05-01T00:00:00Z", "2016-06-01T00:00:00Z", "2016-07-01T00:00:00Z", "2016-08-01T00:00:00Z", "2016-09-01T00:00:00Z", "2016-10-01T00:00:00Z", "2016-11-01T00:00:00Z", "2016-12-01T00:00:00Z", "2017-01-01T00:00:00Z", "2017-02-01T00:00:00Z", "2017-03-01T00:00:00Z", "2017-04-01T00:00:00Z", "2017-05-01T00:00:00Z", "2017-06-01T00:00:00Z", "2017-07-01T00:00:00Z", "2017-08-01T00:00:00Z", "2017-09-01T00:00:00Z", "2017-10-01T00:00:00Z", "2017-11-01T00:00:00Z", "2017-12-01T00:00:00Z", "2018-01-01T00:00:00Z", "2018-02-01T00:00:00Z", "2018-03-01T00:00:00Z", "2018-04-01T00:00:00Z", "2018-05-01T00:00:00Z", "2018-06-01T00:00:00Z", "2018-07-01T00:00:00Z", "2018-08-01T00:00:00Z", "2018-09-01T00:00:00Z", "2018-10-01T00:00:00Z", "2018-11-01T00:00:00Z", "2018-12-01T00:00:00Z", "2019-01-01T00:00:00Z", "2019-02-01T00:00:00Z", "2019-03-01T00:00:00Z", "2019-04-01T00:00:00Z", "2019-05-01T00:00:00Z", "2019-06-01T00:00:00Z", "2019-07-01T00:00:00Z", "2019-08-01T00:00:00Z", "2019-09-01T00:00:00Z", "2019-10-01T00:00:00Z", "2019-11-01T00:00:00Z", "2019-12-01T00:00:00Z", "2020-01-01T00:00:00Z", "2020-02-01T00:00:00Z", "2020-03-01T00:00:00Z", "2020-04-01T00:00:00Z", "2020-05-01T00:00:00Z", "2020-06-01T00:00:00Z", "2020-07-01T00:00:00Z", "2020-08-01T00:00:00Z", "2020-09-01T00:00:00Z", "2020-10-01T00:00:00Z", "2020-11-01T00:00:00Z", "2020-12-01T00:00:00Z", "2021-01-01T00:00:00Z", "2021-02-01T00:00:00Z", "2021-03-01T00:00:00Z", "2021-04-01T00:00:00Z", "2021-05-01T00:00:00Z", "2021-06-01T00:00:00Z", "2021-07-01T00:00:00Z", "2021-08-01T00:00:00Z", "2021-09-01T00:00:00Z", "2021-10-01T00:00:00Z", "2021-11-01T00:00:00Z", "2021-12-01T00:00:00Z", "2022-01-01T00:00:00Z", "2022-02-01T00:00:00Z", "2022-03-01T00:00:00Z", "2022-04-01T00:00:00Z", "2022-05-01T00:00:00Z", "2022-06-01T00:00:00Z", "2022-07-01T00:00:00Z", "2022-08-01T00:00:00Z", "2022-09-01T00:00:00Z", "2022-10-01T00:00:00Z", "2022-11-01T00:00:00Z", "2022-12-01T00:00:00Z", "2023-01-01T00:00:00Z", "2023-02-01T00:00:00Z", "2023-03-01T00:00:00Z", "2023-04-01T00:00:00Z", "2023-05-01T00:00:00Z", "2023-06-01T00:00:00Z", "2023-07-01T00:00:00Z", "2023-08-01T00:00:00Z", "2023-09-01T00:00:00Z", "2023-10-01T00:00:00Z", "2023-11-01T00:00:00Z", "2023-12-01T00:00:00Z", "2024-01-01T00:00:00Z", "2024-02-01T00:00:00Z", "2024-03-01T00:00:00Z", "2024-04-01T00:00:00Z", "2024-05-01T00:00:00Z", "2024-06-01T00:00:00Z", "2024-07-01T00:00:00Z", "2024-08-01T00:00:00Z", "2024-09-01T00:00:00Z", "2024-10-01T00:00:00Z", "2024-11-01T00:00:00Z", "2024-12-01T00:00:00Z", "2025-01-01T00:00:00Z", "2025-02-01T00:00:00Z"], "y": [1, 1, 1, 1, 1, 4, 44, 114, 226, 240, 250, 264, 270, 273, 277, 296, 304, 305, 424, 428, 470, 480, 496, 500, 541, 553, 555, 605, 608, 629, 635, 653, 658, 693, 693, 1009, 5662, 7188, 8545, 8721, 8918, 8971, 9216, 9335, 9593, 9644, 9657, 9696, 9991, 10337, 10441, 10457, 10674, 10760, 10876, 11396, 11448, 11636, 11685, 11847, 11933, 12159, 12438, 13211, 13883, 14785, 14874, 14991, 15171, 15479, 15886, 17034, 18142, 19207, 20021, 20698, 21002, 21114, 21305, 22057, 22262, 22424, 22602, 22655, 22893, 22943, 23010, 23054, 23104, 23124, 23195, 23217, 23358, 23385, 23440, 23527, 23595, 24197, 24201, 24352, 24530, 25042, 25084, 25261, 25641, 25651, 25699, 25716, 25842, 25935, 25939, 25978, 26076, 26146, 26317, 26306, 26350, 26389, 26415, 26642, 26729, 27613, 28067, 28128, 28173, 28176, 28181, 28182, 28182, 28185, 28231, 28273, 28317, 28335, 28346, 28388, 28411, 28480, 28479, 28476, 28495, 28505, 28509, 28529, 28538, 28542, 28556, 28585, 28614, 28709, 28731, 28756, 28759, 28814, 28828, 28838, 28835, 28845, 28905, 28900, 28900, 28965, 28973, 28979, 29004, 29007, 28999, 29074, 29150, 29234, 29312, 29480, 29513, 29537, 29563, 29574, 29601, 29602, 29607, 29615, 29628, 29650, 29658, 29775, 29721, 29786, 29870, 29934, 29942, 29936, 29947, 29948, 29957, 29964, 29969, 29981, 30034, 30070, 30093, 30077, 30093, 30100, 30259, 30263, 30258, 30337]}, {"line": {"color": "#DB2828"}, "name": "Modelled saturation curve", "type": "scatter", "x": ["2008-01-01T00:00:00Z", "2008-02-01T00:00:00Z", "2008-03-01T00:00:00Z", "2008-04-01T00:00:00Z", "2008-05-01T00:00:00Z", "2008-06-01T00:00:00Z", "2008-07-01T00:00:00Z", "2008-08-01T00:00:00Z", "2008-09-01T00:00:00Z", "2008-10-01T00:00:00Z", "2008-11-01T00:00:00Z", "2008-12-01T00:00:00Z", "2009-01-01T00:00:00Z", "2009-02-01T00:00:00Z", "2009-03-01T00:00:00Z", "2009-04-01T00:00:00Z", "2009-05-01T00:00:00Z", "2009-06-01T00:00:00Z", "2009-07-01T00:00:00Z", "2009-08-01T00:00:00Z", "2009-09-01T00:00:00Z", "2009-10-01T00:00:00Z", "2009-11-01T00:00:00Z", "2009-12-01T00:00:00Z", "2010-01-01T00:00:00Z", "2010-02-01T00:00:00Z", "2010-03-01T00:00:00Z", "2010-04-01T00:00:00Z", "2010-05-01T00:00:00Z", "2010-06-01T00:00:00Z", "2010-07-01T00:00:00Z", "2010-08-01T00:00:00Z", "2010-09-01T00:00:00Z", "2010-10-01T00:00:00Z", "2010-11-01T00:00:00Z", "2010-12-01T00:00:00Z", "2011-01-01T00:00:00Z", "2011-02-01T00:00:00Z", "2011-03-01T00:00:00Z", "2011-04-01T00:00:00Z", "2011-05-01T00:00:00Z", "2011-06-01T00:00:00Z", "2011-07-01T00:00:00Z", "2011-08-01T00:00:00Z", "2011-09-01T00:00:00Z", "2011-10-01T00:00:00Z", "2011-11-01T00:00:00Z", "2011-12-01T00:00:00Z", "2012-01-01T00:00:00Z", "2012-02-01T00:00:00Z", "2012-03-01T00:00:00Z", "2012-04-01T00:00:00Z", "2012-05-01T00:00:00Z", "2012-06-01T00:00:00Z", "2012-07-01T00:00:00Z", "2012-08-01T00:00:00Z", "2012-09-01T00:00:00Z", "2012-10-01T00:00:00Z", "2012-11-01T00:00:00Z", "2012-12-01T00:00:00Z", "2013-01-01T00:00:00Z", "2013-02-01T00:00:00Z", "2013-03-01T00:00:00Z", "2013-04-01T00:00:00Z", "2013-05-01T00:00:00Z", "2013-06-01T00:00:00Z", "2013-07-01T00:00:00Z", "2013-08-01T00:00:00Z", "2013-09-01T00:00:00Z", "2013-10-01T00:00:00Z", "2013-11-01T00:00:00Z", "2013-12-01T00:00:00Z", "2014-01-01T00:00:00Z", "2014-02-01T00:00:00Z", "2014-03-01T00:00:00Z", "2014-04-01T00:00:00Z", "2014-05-01T00:00:00Z", "2014-06-01T00:00:00Z", "2014-07-01T00:00:00Z", "2014-08-01T00:00:00Z", "2014-09-01T00:00:00Z", "2014-10-01T00:00:00Z", "2014-11-01T00:00:00Z", "2014-12-01T00:00:00Z", "2015-01-01T00:00:00Z", "2015-02-01T00:00:00Z", "2015-03-01T00:00:00Z", "2015-04-01T00:00:00Z", "2015-05-01T00:00:00Z", "2015-06-01T00:00:00Z", "2015-07-01T00:00:00Z", "2015-08-01T00:00:00Z", "2015-09-01T00:00:00Z", "2015-10-01T00:00:00Z", "2015-11-01T00:00:00Z", "2015-12-01T00:00:00Z", "2016-01-01T00:00:00Z", "2016-02-01T00:00:00Z", "2016-03-01T00:00:00Z", "2016-04-01T00:00:00Z", "2016-05-01T00:00:00Z", "2016-06-01T00:00:00Z", "2016-07-01T00:00:00Z", "2016-08-01T00:00:00Z", "2016-09-01T00:00:00Z", "2016-10-01T00:00:00Z", "2016-11-01T00:00:00Z", "2016-12-01T00:00:00Z", "2017-01-01T00:00:00Z", "2017-02-01T00:00:00Z", "2017-03-01T00:00:00Z", "2017-04-01T00:00:00Z", "2017-05-01T00:00:00Z", "2017-06-01T00:00:00Z", "2017-07-01T00:00:00Z", "2017-08-01T00:00:00Z", "2017-09-01T00:00:00Z", "2017-10-01T00:00:00Z", "2017-11-01T00:00:00Z", "2017-12-01T00:00:00Z", "2018-01-01T00:00:00Z", "2018-02-01T00:00:00Z", "2018-03-01T00:00:00Z", "2018-04-01T00:00:00Z", "2018-05-01T00:00:00Z", "2018-06-01T00:00:00Z", "2018-07-01T00:00:00Z", "2018-08-01T00:00:00Z", "2018-09-01T00:00:00Z", "2018-10-01T00:00:00Z", "2018-11-01T00:00:00Z", "2018-12-01T00:00:00Z", "2019-01-01T00:00:00Z", "2019-02-01T00:00:00Z", "2019-03-01T00:00:00Z", "2019-04-01T00:00:00Z", "2019-05-01T00:00:00Z", "2019-06-01T00:00:00Z", "2019-07-01T00:00:00Z", "2019-08-01T00:00:00Z", "2019-09-01T00:00:00Z", "2019-10-01T00:00:00Z", "2019-11-01T00:00:00Z", "2019-12-01T00:00:00Z", "2020-01-01T00:00:00Z", "2020-02-01T00:00:00Z", "2020-03-01T00:00:00Z", "2020-04-01T00:00:00Z", "2020-05-01T00:00:00Z", "2020-06-01T00:00:00Z", "2020-07-01T00:00:00Z", "2020-08-01T00:00:00Z", "2020-09-01T00:00:00Z", "2020-10-01T00:00:00Z", "2020-11-01T00:00:00Z", "2020-12-01T00:00:00Z", "2021-01-01T00:00:00Z", "2021-02-01T00:00:00Z", "2021-03-01T00:00:00Z", "2021-04-01T00:00:00Z", "2021-05-01T00:00:00Z", "2021-06-01T00:00:00Z", "2021-07-01T00:00:00Z", "2021-08-01T00:00:00Z", "2021-09-01T00:00:00Z", "2021-10-01T00:00:00Z", "2021-11-01T00:00:00Z", "2021-12-01T00:00:00Z", "2022-01-01T00:00:00Z", "2022-02-01T00:00:00Z", "2022-03-01T00:00:00Z", "2022-04-01T00:00:00Z", "2022-05-01T00:00:00Z", "2022-06-01T00:00:00Z", "2022-07-01T00:00:00Z", "2022-08-01T00:00:00Z", "2022-09-01T00:00:00Z", "2022-10-01T00:00:00Z", "2022-11-01T00:00:00Z", "2022-12-01T00:00:00Z", "2023-01-01T00:00:00Z", "2023-02-01T00:00:00Z", "2023-03-01T00:00:00Z", "2023-04-01T00:00:00Z", "2023-05-01T00:00:00Z", "2023-06-01T00:00:00Z", "2023-07-01T00:00:00Z", "2023-08-01T00:00:00Z", "2023-09-01T00:00:00Z", "2023-10-01T00:00:00Z", "2023-11-01T00:00:00Z", "2023-12-01T00:00:00Z", "2024-01-01T00:00:00Z", "2024-02-01T00:00:00Z", "2024-03-01T00:00:00Z", "2024-04-01T00:00:00Z", "2024-05-01T00:00:00Z", "2024-06-01T00:00:00Z", "2024-07-01T00:00:00Z", "2024-08-01T00:00:00Z", "2024-09-01T00:00:00Z", "2024-10-01T00:00:00Z", "2024-11-01T00:00:00Z", "2024-12-01T00:00:00Z", "2025-01-01T00:00:00Z", "2025-02-01T00:00:00Z"], "y": [-1458, -1371, -1280, -1185, -1086, -983, -877, -765, -649, -529, -404, -274, -139, 1, 146, 297, 454, 616, 784, 958, 1138, 1324, 1516, 1715, 1921, 2133, 2351, 2577, 2809, 3048, 3294, 3547, 3807, 4073, 4347, 4627, 4914, 5208, 5509, 5816, 6129, 6449, 6775, 7106, 7443, 7786, 8134, 8486, 8843, 9205, 9570, 9939, 10311, 10687, 11064, 11444, 11826, 12209, 12592, 12977, 13361, 13745, 14128, 14510, 14891, 15269, 15645, 16018, 16388, 16755, 17117, 17476, 17830, 18179, 18523, 18862, 19195, 19523, 19844, 20159, 20468, 20771, 21067, 21356, 21639, 21914, 22183, 22445, 22700, 22948, 23189, 23423, 23651, 23871, 24085, 24293, 24494, 24688, 24876, 25058, 25234, 25403, 25567, 25725, 25878, 26025, 26167, 26303, 26434, 26561, 26683, 26800, 26913, 27021, 27125, 27225, 27321, 27413, 27501, 27586, 27668, 27746, 27821, 27893, 27962, 28028, 28091, 28152, 28210, 28265, 28319, 28370, 28418, 28465, 28510, 28553, 28594, 28633, 28670, 28706, 28740, 28773, 28804, 28834, 28863, 28890, 28917, 28942, 28966, 28988, 29010, 29031, 29051, 29070, 29088, 29106, 29122, 29138, 29153, 29168, 29182, 29195, 29208, 29220, 29231, 29242, 29253, 29263, 29272, 29281, 29290, 29298, 29306, 29314, 29321, 29328, 29335, 29341, 29347, 29353, 29358, 29364, 29369, 29373, 29378, 29382, 29386, 29390, 29394, 29398, 29401, 29405, 29408, 29411, 29414, 29416, 29419, 29421, 29424, 29426, 29428, 29430, 29432, 29434, 29436, 29438]}, {"hovertext": "Estimated total data: scrubbed", "line": {"color": "#DB2828", "dash": "dash"}, "name": "Estimated total data", "showlegend": true, "type": "scatter", "x": ["2008-01-01T00:00:00Z", "2008-02-01T00:00:00Z", "2008-03-01T00:00:00Z", "2008-04-01T00:00:00Z", "2008-05-01T00:00:00Z", "2008-06-01T00:00:00Z", "2008-07-01T00:00:00Z", "2008-08-01T00:00:00Z", "2008-09-01T00:00:00Z", "2008-10-01T00:00:00Z", "2008-11-01T00:00:00Z", "2008-12-01T00:00:00Z", "2009-01-01T00:00:00Z", "2009-02-01T00:00:00Z", "2009-03-01T00:00:00Z", "2009-04-01T00:00:00Z", "2009-05-01T00:00:00Z", "2009-06-01T00:00:00Z", "2009-07-01T00:00:00Z", "2009-08-01T00:00:00Z", "2009-09-01T00:00:00Z", "2009-10-01T00:00:00Z", "2009-11-01T00:00:00Z", "2009-12-01T00:00:00Z", "2010-01-01T00:00:00Z", "2010-02-01T00:00:00Z", "2010-03-01T00:00:00Z", "2010-04-01T00:00:00Z", "2010-05-01T00:00:00Z", "2010-06-01T00:00:00Z", "2010-07-01T00:00:00Z", "2010-08-01T00:00:00Z", "2010-09-01T00:00:00Z", "2010-10-01T00:00:00Z", "2010-11-01T00:00:00Z", "2010-12-01T00:00:00Z", "2011-01-01T00:00:00Z", "2011-02-01T00:00:00Z", "2011-03-01T00:00:00Z", "2011-04-01T00:00:00Z", "2011-05-01T00:00:00Z", "2011-06-01T00:00:00Z", "2011-07-01T00:00:00Z", "2011-08-01T00:00:00Z", "2011-09-01T00:00:00Z", "2011-10-01T00:00:00Z", "2011-11-01T00:00:00Z", "2011-12-01T00:00:00Z", "2012-01-01T00:00:00Z", "2012-02-01T00:00:00Z", "2012-03-01T00:00:00Z", "2012-04-01T00:00:00Z", "2012-05-01T00:00:00Z", "2012-06-01T00:00:00Z", "2012-07-01T00:00:00Z", "2012-08-01T00:00:00Z", "2012-09-01T00:00:00Z", "2012-10-01T00:00:00Z", "2012-11-01T00:00:00Z", "2012-12-01T00:00:00Z", "2013-01-01T00:00:00Z", "2013-02-01T00:00:00Z", "2013-03-01T00:00:00Z", "2013-04-01T00:00:00Z", "2013-05-01T00:00:00Z", "2013-06-01T00:00:00Z", "2013-07-01T00:00:00Z", "2013-08-01T00:00:00Z", "2013-09-01T00:00:00Z", "2013-10-01T00:00:00Z", "2013-11-01T00:00:00Z", "2013-12-01T00:00:00Z", "2014-01-01T00:00:00Z", "2014-02-01T00:00:00Z", "2014-03-01T00:00:00Z", "2014-04-01T00:00:00Z", "2014-05-01T00:00:00Z", "2014-06-01T00:00:00Z", "2014-07-01T00:00:00Z", "2014-08-01T00:00:00Z", "2014-09-01T00:00:00Z", "2014-10-01T00:00:00Z", "2014-11-01T00:00:00Z", "2014-12-01T00:00:00Z", "2015-01-01T00:00:00Z", "2015-02-01T00:00:00Z", "2015-03-01T00:00:00Z", "2015-04-01T00:00:00Z", "2015-05-01T00:00:00Z", "2015-06-01T00:00:00Z", "2015-07-01T00:00:00Z", "2015-08-01T00:00:00Z", "2015-09-01T00:00:00Z", "2015-10-01T00:00:00Z", "2015-11-01T00:00:00Z", "2015-12-01T00:00:00Z", "2016-01-01T00:00:00Z", "2016-02-01T00:00:00Z", "2016-03-01T00:00:00Z", "2016-04-01T00:00:00Z", "2016-05-01T00:00:00Z", "2016-06-01T00:00:00Z", "2016-07-01T00:00:00Z", "2016-08-01T00:00:00Z", "2016-09-01T00:00:00Z", "2016-10-01T00:00:00Z", "2016-11-01T00:00:00Z", "2016-12-01T00:00:00Z", "2017-01-01T00:00:00Z", "2017-02-01T00:00:00Z", "2017-03-01T00:00:00Z", "2017-04-01T00:00:00Z", "2017-05-01T00:00:00Z", "2017-06-01T00:00:00Z", "2017-07-01T00:00:00Z", "2017-08-01T00:00:00Z", "2017-09-01T00:00:00Z", "2017-10-01T00:00:00Z", "2017-11-01T00:00:00Z", "2017-12-01T00:00:00Z", "2018-01-01T00:00:00Z", "2018-02-01T00:00:00Z", "2018-03-01T00:00:00Z", "2018-04-01T00:00:00Z", "2018-05-01T00:00:00Z", "2018-06-01T00:00:00Z", "2018-07-01T00:00:00Z", "2018-08-01T00:00:00Z", "2018-09-01T00:00:00Z", "2018-10-01T00:00:00Z", "2018-11-01T00:00:00Z", "2018-12-01T00:00:00Z", "2019-01-01T00:00:00Z", "2019-02-01T00:00:00Z", "2019-03-01T00:00:00Z", "2019-04-01T00:00:00Z", "2019-05-01T00:00:00Z", "2019-06-01T00:00:00Z", "2019-07-01T00:00:00Z", "2019-08-01T00:00:00Z", "2019-09-01T00:00:00Z", "2019-10-01T00:00:00Z", "2019-11-01T00:00:00Z", "2019-12-01T00:00:00Z", "2020-01-01T00:00:00Z", "2020-02-01T00:00:00Z", "2020-03-01T00:00:00Z", "2020-04-01T00:00:00Z", "2020-05-01T00:00:00Z", "2020-06-01T00:00:00Z", "2020-07-01T00:00:00Z", "2020-08-01T00:00:00Z", "2020-09-01T00:00:00Z", "2020-10-01T00:00:00Z", "2020-11-01T00:00:00Z", "2020-12-01T00:00:00Z", "2021-01-01T00:00:00Z", "2021-02-01T00:00:00Z", "2021-03-01T00:00:00Z", "2021-04-01T00:00:00Z", "2021-05-01T00:00:00Z", "2021-06-01T00:00:00Z", "2021-07-01T00:00:00Z", "2021-08-01T00:00:00Z", "2021-09-01T00:00:00Z", "2021-10-01T00:00:00Z", "2021-11-01T00:00:00Z", "2021-12-01T00:00:00Z", "2022-01-01T00:00:00Z", "2022-02-01T00:00:00Z", "2022-03-01T00:00:00Z", "2022-04-01T00:00:00Z", "2022-05-01T00:00:00Z", "2022-06-01T00:00:00Z", "2022-07-01T00:00:00Z", "2022-08-01T00:00:00Z", "2022-09-01T00:00:00Z", "2022-10-01T00:00:00Z", "2022-11-01T00:00:00Z", "2022-12-01T00:00:00Z", "2023-01-01T00:00:00Z", "2023-02-01T00:00:00Z", "2023-03-01T00:00:00Z", "2023-04-01T00:00:00Z", "2023-05-01T00:00:00Z", "2023-06-01T00:00:00Z", "2023-07-01T00:00:00Z", "2023-08-01T00:00:00Z", "2023-09-01T00:00:00Z", "2023-10-01T00:00:00Z", "2023-11-01T00:00:00Z", "2023-12-01T00:00:00Z", "2024-01-01T00:00:00Z", "2024-02-01T00:00:00Z", "2024-03-01T00:00:00Z", "2024-04-01T00:00:00Z", "2024-05-01T00:00:00Z", "2024-06-01T00:00:00Z", "2024-07-01T00:00:00Z", "2024-08-01T00:00:00Z", "2024-09-01T00:00:00Z", "2024-10-01T00:00:00Z", "2024-11-01T00:00:00Z", "2024-12-01T00:00:00Z", "2025-01-01T00:00:00Z", "2025-02-01T00:00:00Z"], "y": [29473, 29473, 29473, 29473, 29473, 29473, 29473, 29473, 29473, 29473, 29473, 29473, 29473, 29473, 29473, 29473, 29473, 29473, 29473, 29473, 29473, 29473, 29473, 29473, 29473, 29473, 29473, 29473, 29473, 29473, 29473, 29473, 29473, 29473, 29473, 29473, 29473, 29473, 29473, 29473, 29473, 29473, 29473, 29473, 29473, 29473, 29473, 29473, 29473, 29473, 29473, 29473, 29473, 29473, 29473, 29473, 29473, 29473, 29473, 29473, 29473, 29473, 29473, 29473, 29473, 29473, 29473, 29473, 29473, 29473, 29473, 29473, 29473, 29473, 29473, 29473, 29473, 29473, 29473, 29473, 29473, 29473, 29473, 29473, 29473, 29473, 29473, 29473, 29473, 29473, 29473, 29473, 29473, 29473, 29473, 29473, 29473, 29473, 29473, 29473, 29473, 29473, 29473, 29473, 29473, 29473, 29473, 29473, 29473, 29473, 29473, 29473, 29473, 29473, 29473, 29473, 29473, 29473, 29473, 29473, 29473, 29473, 29473, 29473, 29473, 29473, 29473, 29473, 29473, 29473, 29473, 29473, 29473, 29473, 29473, 29473, 29473, 29473, 29473, 29473, 29473, 29473, 29473, 29473, 29473, 29473, 29473, 29473, 29473, 29473, 29473, 29473, 29473, 29473, 29473, 29473, 29473, 29473, 29473, 29473, 29473, 29473, 29473, 29473, 29473, 29473, 29473, 29473, 29473, 29473, 29473, 29473, 29473, 29473, 29473, 29473, 29473, 29473, 29473, 29473, 29473, 29473, 29473, 29473, 29473, 29473, 29473, 29473, 29473, 29473, 29473, 29473, 29473, 29473, 29473, 29473, 29473, 29473, 29473, 29473, 29473, 29473, 29473, 29473, 29473, 29473]}], "layout": {"legend": {"bgcolor": "rgba(255,255,255,0.66)", "x": 0.02, "y": 0.85}, "showlegend": true, "title": {"text": "Mapping Saturation"}, "xaxis": {"ticks": "outside", "title": {"text": "Date"}}, "yaxis": {"range": [1.0, 31854], "title": {"text": "Count"}}}} +{"data": [{"line": {"color": "#2185D0"}, "name": "OSM data", "type": "scatter", "x": ["2008-01-01T00:00:00Z", "2008-02-01T00:00:00Z", "2008-03-01T00:00:00Z", "2008-04-01T00:00:00Z", "2008-05-01T00:00:00Z", "2008-06-01T00:00:00Z", "2008-07-01T00:00:00Z", "2008-08-01T00:00:00Z", "2008-09-01T00:00:00Z", "2008-10-01T00:00:00Z", "2008-11-01T00:00:00Z", "2008-12-01T00:00:00Z", "2009-01-01T00:00:00Z", "2009-02-01T00:00:00Z", "2009-03-01T00:00:00Z", "2009-04-01T00:00:00Z", "2009-05-01T00:00:00Z", "2009-06-01T00:00:00Z", "2009-07-01T00:00:00Z", "2009-08-01T00:00:00Z", "2009-09-01T00:00:00Z", "2009-10-01T00:00:00Z", "2009-11-01T00:00:00Z", "2009-12-01T00:00:00Z", "2010-01-01T00:00:00Z", "2010-02-01T00:00:00Z", "2010-03-01T00:00:00Z", "2010-04-01T00:00:00Z", "2010-05-01T00:00:00Z", "2010-06-01T00:00:00Z", "2010-07-01T00:00:00Z", "2010-08-01T00:00:00Z", "2010-09-01T00:00:00Z", "2010-10-01T00:00:00Z", "2010-11-01T00:00:00Z", "2010-12-01T00:00:00Z", "2011-01-01T00:00:00Z", "2011-02-01T00:00:00Z", "2011-03-01T00:00:00Z", "2011-04-01T00:00:00Z", "2011-05-01T00:00:00Z", "2011-06-01T00:00:00Z", "2011-07-01T00:00:00Z", "2011-08-01T00:00:00Z", "2011-09-01T00:00:00Z", "2011-10-01T00:00:00Z", "2011-11-01T00:00:00Z", "2011-12-01T00:00:00Z", "2012-01-01T00:00:00Z", "2012-02-01T00:00:00Z", "2012-03-01T00:00:00Z", "2012-04-01T00:00:00Z", "2012-05-01T00:00:00Z", "2012-06-01T00:00:00Z", "2012-07-01T00:00:00Z", "2012-08-01T00:00:00Z", "2012-09-01T00:00:00Z", "2012-10-01T00:00:00Z", "2012-11-01T00:00:00Z", "2012-12-01T00:00:00Z", "2013-01-01T00:00:00Z", "2013-02-01T00:00:00Z", "2013-03-01T00:00:00Z", "2013-04-01T00:00:00Z", "2013-05-01T00:00:00Z", "2013-06-01T00:00:00Z", "2013-07-01T00:00:00Z", "2013-08-01T00:00:00Z", "2013-09-01T00:00:00Z", "2013-10-01T00:00:00Z", "2013-11-01T00:00:00Z", "2013-12-01T00:00:00Z", "2014-01-01T00:00:00Z", "2014-02-01T00:00:00Z", "2014-03-01T00:00:00Z", "2014-04-01T00:00:00Z", "2014-05-01T00:00:00Z", "2014-06-01T00:00:00Z", "2014-07-01T00:00:00Z", "2014-08-01T00:00:00Z", "2014-09-01T00:00:00Z", "2014-10-01T00:00:00Z", "2014-11-01T00:00:00Z", "2014-12-01T00:00:00Z", "2015-01-01T00:00:00Z", "2015-02-01T00:00:00Z", "2015-03-01T00:00:00Z", "2015-04-01T00:00:00Z", "2015-05-01T00:00:00Z", "2015-06-01T00:00:00Z", "2015-07-01T00:00:00Z", "2015-08-01T00:00:00Z", "2015-09-01T00:00:00Z", "2015-10-01T00:00:00Z", "2015-11-01T00:00:00Z", "2015-12-01T00:00:00Z", "2016-01-01T00:00:00Z", "2016-02-01T00:00:00Z", "2016-03-01T00:00:00Z", "2016-04-01T00:00:00Z", "2016-05-01T00:00:00Z", "2016-06-01T00:00:00Z", "2016-07-01T00:00:00Z", "2016-08-01T00:00:00Z", "2016-09-01T00:00:00Z", "2016-10-01T00:00:00Z", "2016-11-01T00:00:00Z", "2016-12-01T00:00:00Z", "2017-01-01T00:00:00Z", "2017-02-01T00:00:00Z", "2017-03-01T00:00:00Z", "2017-04-01T00:00:00Z", "2017-05-01T00:00:00Z", "2017-06-01T00:00:00Z", "2017-07-01T00:00:00Z", "2017-08-01T00:00:00Z", "2017-09-01T00:00:00Z", "2017-10-01T00:00:00Z", "2017-11-01T00:00:00Z", "2017-12-01T00:00:00Z", "2018-01-01T00:00:00Z", "2018-02-01T00:00:00Z", "2018-03-01T00:00:00Z", "2018-04-01T00:00:00Z", "2018-05-01T00:00:00Z", "2018-06-01T00:00:00Z", "2018-07-01T00:00:00Z", "2018-08-01T00:00:00Z", "2018-09-01T00:00:00Z", "2018-10-01T00:00:00Z", "2018-11-01T00:00:00Z", "2018-12-01T00:00:00Z", "2019-01-01T00:00:00Z", "2019-02-01T00:00:00Z", "2019-03-01T00:00:00Z", "2019-04-01T00:00:00Z", "2019-05-01T00:00:00Z", "2019-06-01T00:00:00Z", "2019-07-01T00:00:00Z", "2019-08-01T00:00:00Z", "2019-09-01T00:00:00Z", "2019-10-01T00:00:00Z", "2019-11-01T00:00:00Z", "2019-12-01T00:00:00Z", "2020-01-01T00:00:00Z", "2020-02-01T00:00:00Z", "2020-03-01T00:00:00Z", "2020-04-01T00:00:00Z", "2020-05-01T00:00:00Z", "2020-06-01T00:00:00Z", "2020-07-01T00:00:00Z", "2020-08-01T00:00:00Z", "2020-09-01T00:00:00Z", "2020-10-01T00:00:00Z", "2020-11-01T00:00:00Z", "2020-12-01T00:00:00Z", "2021-01-01T00:00:00Z", "2021-02-01T00:00:00Z", "2021-03-01T00:00:00Z", "2021-04-01T00:00:00Z", "2021-05-01T00:00:00Z", "2021-06-01T00:00:00Z", "2021-07-01T00:00:00Z", "2021-08-01T00:00:00Z", "2021-09-01T00:00:00Z", "2021-10-01T00:00:00Z", "2021-11-01T00:00:00Z", "2021-12-01T00:00:00Z", "2022-01-01T00:00:00Z", "2022-02-01T00:00:00Z", "2022-03-01T00:00:00Z", "2022-04-01T00:00:00Z", "2022-05-01T00:00:00Z", "2022-06-01T00:00:00Z", "2022-07-01T00:00:00Z", "2022-08-01T00:00:00Z", "2022-09-01T00:00:00Z", "2022-10-01T00:00:00Z", "2022-11-01T00:00:00Z", "2022-12-01T00:00:00Z", "2023-01-01T00:00:00Z", "2023-02-01T00:00:00Z", "2023-03-01T00:00:00Z", "2023-04-01T00:00:00Z", "2023-05-01T00:00:00Z", "2023-06-01T00:00:00Z", "2023-07-01T00:00:00Z", "2023-08-01T00:00:00Z", "2023-09-01T00:00:00Z", "2023-10-01T00:00:00Z", "2023-11-01T00:00:00Z", "2023-12-01T00:00:00Z", "2024-01-01T00:00:00Z", "2024-02-01T00:00:00Z", "2024-03-01T00:00:00Z", "2024-04-01T00:00:00Z", "2024-05-01T00:00:00Z", "2024-06-01T00:00:00Z", "2024-07-01T00:00:00Z", "2024-08-01T00:00:00Z", "2024-09-01T00:00:00Z", "2024-10-01T00:00:00Z", "2024-11-01T00:00:00Z", "2024-12-01T00:00:00Z", "2025-01-01T00:00:00Z", "2025-02-01T00:00:00Z"], "y": [1, 1, 1, 1, 1, 4, 44, 114, 226, 240, 250, 264, 270, 273, 277, 296, 304, 305, 424, 428, 470, 480, 496, 500, 541, 553, 555, 605, 608, 629, 635, 653, 658, 693, 693, 1009, 5662, 7188, 8545, 8721, 8918, 8971, 9216, 9335, 9593, 9644, 9657, 9696, 9991, 10337, 10441, 10457, 10674, 10760, 10876, 11396, 11448, 11636, 11685, 11847, 11933, 12159, 12438, 13211, 13883, 14785, 14874, 14991, 15171, 15479, 15886, 17034, 18142, 19207, 20021, 20698, 21002, 21114, 21305, 22057, 22262, 22424, 22602, 22655, 22893, 22943, 23010, 23054, 23104, 23124, 23195, 23217, 23358, 23385, 23440, 23527, 23595, 24197, 24201, 24352, 24530, 25042, 25084, 25261, 25641, 25651, 25699, 25716, 25842, 25935, 25939, 25978, 26076, 26146, 26317, 26306, 26350, 26389, 26415, 26642, 26729, 27613, 28067, 28128, 28173, 28176, 28181, 28182, 28182, 28185, 28231, 28273, 28317, 28335, 28346, 28388, 28411, 28480, 28479, 28476, 28495, 28505, 28509, 28529, 28538, 28542, 28556, 28585, 28614, 28709, 28731, 28756, 28759, 28814, 28828, 28838, 28835, 28845, 28905, 28900, 28900, 28965, 28973, 28979, 29004, 29007, 28999, 29074, 29150, 29234, 29312, 29480, 29513, 29537, 29563, 29574, 29601, 29602, 29607, 29615, 29628, 29650, 29658, 29775, 29721, 29786, 29870, 29934, 29942, 29936, 29947, 29948, 29957, 29964, 29969, 29981, 30034, 30070, 30093, 30077, 30093, 30100, 30259, 30263, 30258, 30337]}, {"line": {"color": "#DB2828"}, "name": "Modelled saturation curve", "type": "scatter", "x": ["2008-01-01T00:00:00Z", "2008-02-01T00:00:00Z", "2008-03-01T00:00:00Z", "2008-04-01T00:00:00Z", "2008-05-01T00:00:00Z", "2008-06-01T00:00:00Z", "2008-07-01T00:00:00Z", "2008-08-01T00:00:00Z", "2008-09-01T00:00:00Z", "2008-10-01T00:00:00Z", "2008-11-01T00:00:00Z", "2008-12-01T00:00:00Z", "2009-01-01T00:00:00Z", "2009-02-01T00:00:00Z", "2009-03-01T00:00:00Z", "2009-04-01T00:00:00Z", "2009-05-01T00:00:00Z", "2009-06-01T00:00:00Z", "2009-07-01T00:00:00Z", "2009-08-01T00:00:00Z", "2009-09-01T00:00:00Z", "2009-10-01T00:00:00Z", "2009-11-01T00:00:00Z", "2009-12-01T00:00:00Z", "2010-01-01T00:00:00Z", "2010-02-01T00:00:00Z", "2010-03-01T00:00:00Z", "2010-04-01T00:00:00Z", "2010-05-01T00:00:00Z", "2010-06-01T00:00:00Z", "2010-07-01T00:00:00Z", "2010-08-01T00:00:00Z", "2010-09-01T00:00:00Z", "2010-10-01T00:00:00Z", "2010-11-01T00:00:00Z", "2010-12-01T00:00:00Z", "2011-01-01T00:00:00Z", "2011-02-01T00:00:00Z", "2011-03-01T00:00:00Z", "2011-04-01T00:00:00Z", "2011-05-01T00:00:00Z", "2011-06-01T00:00:00Z", "2011-07-01T00:00:00Z", "2011-08-01T00:00:00Z", "2011-09-01T00:00:00Z", "2011-10-01T00:00:00Z", "2011-11-01T00:00:00Z", "2011-12-01T00:00:00Z", "2012-01-01T00:00:00Z", "2012-02-01T00:00:00Z", "2012-03-01T00:00:00Z", "2012-04-01T00:00:00Z", "2012-05-01T00:00:00Z", "2012-06-01T00:00:00Z", "2012-07-01T00:00:00Z", "2012-08-01T00:00:00Z", "2012-09-01T00:00:00Z", "2012-10-01T00:00:00Z", "2012-11-01T00:00:00Z", "2012-12-01T00:00:00Z", "2013-01-01T00:00:00Z", "2013-02-01T00:00:00Z", "2013-03-01T00:00:00Z", "2013-04-01T00:00:00Z", "2013-05-01T00:00:00Z", "2013-06-01T00:00:00Z", "2013-07-01T00:00:00Z", "2013-08-01T00:00:00Z", "2013-09-01T00:00:00Z", "2013-10-01T00:00:00Z", "2013-11-01T00:00:00Z", "2013-12-01T00:00:00Z", "2014-01-01T00:00:00Z", "2014-02-01T00:00:00Z", "2014-03-01T00:00:00Z", "2014-04-01T00:00:00Z", "2014-05-01T00:00:00Z", "2014-06-01T00:00:00Z", "2014-07-01T00:00:00Z", "2014-08-01T00:00:00Z", "2014-09-01T00:00:00Z", "2014-10-01T00:00:00Z", "2014-11-01T00:00:00Z", "2014-12-01T00:00:00Z", "2015-01-01T00:00:00Z", "2015-02-01T00:00:00Z", "2015-03-01T00:00:00Z", "2015-04-01T00:00:00Z", "2015-05-01T00:00:00Z", "2015-06-01T00:00:00Z", "2015-07-01T00:00:00Z", "2015-08-01T00:00:00Z", "2015-09-01T00:00:00Z", "2015-10-01T00:00:00Z", "2015-11-01T00:00:00Z", "2015-12-01T00:00:00Z", "2016-01-01T00:00:00Z", "2016-02-01T00:00:00Z", "2016-03-01T00:00:00Z", "2016-04-01T00:00:00Z", "2016-05-01T00:00:00Z", "2016-06-01T00:00:00Z", "2016-07-01T00:00:00Z", "2016-08-01T00:00:00Z", "2016-09-01T00:00:00Z", "2016-10-01T00:00:00Z", "2016-11-01T00:00:00Z", "2016-12-01T00:00:00Z", "2017-01-01T00:00:00Z", "2017-02-01T00:00:00Z", "2017-03-01T00:00:00Z", "2017-04-01T00:00:00Z", "2017-05-01T00:00:00Z", "2017-06-01T00:00:00Z", "2017-07-01T00:00:00Z", "2017-08-01T00:00:00Z", "2017-09-01T00:00:00Z", "2017-10-01T00:00:00Z", "2017-11-01T00:00:00Z", "2017-12-01T00:00:00Z", "2018-01-01T00:00:00Z", "2018-02-01T00:00:00Z", "2018-03-01T00:00:00Z", "2018-04-01T00:00:00Z", "2018-05-01T00:00:00Z", "2018-06-01T00:00:00Z", "2018-07-01T00:00:00Z", "2018-08-01T00:00:00Z", "2018-09-01T00:00:00Z", "2018-10-01T00:00:00Z", "2018-11-01T00:00:00Z", "2018-12-01T00:00:00Z", "2019-01-01T00:00:00Z", "2019-02-01T00:00:00Z", "2019-03-01T00:00:00Z", "2019-04-01T00:00:00Z", "2019-05-01T00:00:00Z", "2019-06-01T00:00:00Z", "2019-07-01T00:00:00Z", "2019-08-01T00:00:00Z", "2019-09-01T00:00:00Z", "2019-10-01T00:00:00Z", "2019-11-01T00:00:00Z", "2019-12-01T00:00:00Z", "2020-01-01T00:00:00Z", "2020-02-01T00:00:00Z", "2020-03-01T00:00:00Z", "2020-04-01T00:00:00Z", "2020-05-01T00:00:00Z", "2020-06-01T00:00:00Z", "2020-07-01T00:00:00Z", "2020-08-01T00:00:00Z", "2020-09-01T00:00:00Z", "2020-10-01T00:00:00Z", "2020-11-01T00:00:00Z", "2020-12-01T00:00:00Z", "2021-01-01T00:00:00Z", "2021-02-01T00:00:00Z", "2021-03-01T00:00:00Z", "2021-04-01T00:00:00Z", "2021-05-01T00:00:00Z", "2021-06-01T00:00:00Z", "2021-07-01T00:00:00Z", "2021-08-01T00:00:00Z", "2021-09-01T00:00:00Z", "2021-10-01T00:00:00Z", "2021-11-01T00:00:00Z", "2021-12-01T00:00:00Z", "2022-01-01T00:00:00Z", "2022-02-01T00:00:00Z", "2022-03-01T00:00:00Z", "2022-04-01T00:00:00Z", "2022-05-01T00:00:00Z", "2022-06-01T00:00:00Z", "2022-07-01T00:00:00Z", "2022-08-01T00:00:00Z", "2022-09-01T00:00:00Z", "2022-10-01T00:00:00Z", "2022-11-01T00:00:00Z", "2022-12-01T00:00:00Z", "2023-01-01T00:00:00Z", "2023-02-01T00:00:00Z", "2023-03-01T00:00:00Z", "2023-04-01T00:00:00Z", "2023-05-01T00:00:00Z", "2023-06-01T00:00:00Z", "2023-07-01T00:00:00Z", "2023-08-01T00:00:00Z", "2023-09-01T00:00:00Z", "2023-10-01T00:00:00Z", "2023-11-01T00:00:00Z", "2023-12-01T00:00:00Z", "2024-01-01T00:00:00Z", "2024-02-01T00:00:00Z", "2024-03-01T00:00:00Z", "2024-04-01T00:00:00Z", "2024-05-01T00:00:00Z", "2024-06-01T00:00:00Z", "2024-07-01T00:00:00Z", "2024-08-01T00:00:00Z", "2024-09-01T00:00:00Z", "2024-10-01T00:00:00Z", "2024-11-01T00:00:00Z", "2024-12-01T00:00:00Z", "2025-01-01T00:00:00Z", "2025-02-01T00:00:00Z"], "y": [-1458, -1371, -1280, -1185, -1086, -983, -877, -765, -649, -529, -404, -274, -139, 1, 146, 297, 454, 616, 784, 958, 1138, 1324, 1516, 1715, 1921, 2133, 2351, 2577, 2809, 3048, 3294, 3547, 3807, 4073, 4347, 4627, 4914, 5208, 5509, 5816, 6129, 6449, 6775, 7106, 7443, 7786, 8134, 8486, 8843, 9205, 9570, 9939, 10311, 10687, 11064, 11444, 11826, 12209, 12592, 12977, 13361, 13745, 14128, 14510, 14891, 15269, 15645, 16018, 16388, 16755, 17117, 17476, 17830, 18179, 18523, 18862, 19195, 19523, 19844, 20159, 20468, 20771, 21067, 21356, 21639, 21914, 22183, 22445, 22700, 22948, 23189, 23423, 23651, 23871, 24085, 24293, 24494, 24688, 24876, 25058, 25234, 25403, 25567, 25725, 25878, 26025, 26167, 26303, 26434, 26561, 26683, 26800, 26913, 27021, 27125, 27225, 27321, 27413, 27501, 27586, 27668, 27746, 27821, 27893, 27962, 28028, 28091, 28152, 28210, 28265, 28319, 28370, 28418, 28465, 28510, 28553, 28594, 28633, 28670, 28706, 28740, 28773, 28804, 28834, 28863, 28890, 28917, 28942, 28966, 28988, 29010, 29031, 29051, 29070, 29088, 29106, 29122, 29138, 29153, 29168, 29182, 29195, 29208, 29220, 29231, 29242, 29253, 29263, 29272, 29281, 29290, 29298, 29306, 29314, 29321, 29328, 29335, 29341, 29347, 29353, 29358, 29364, 29369, 29373, 29378, 29382, 29386, 29390, 29394, 29398, 29401, 29405, 29408, 29411, 29414, 29416, 29419, 29421, 29424, 29426, 29428, 29430, 29432, 29434, 29436, 29438]}, {"hovertext": "Estimated total data: scrubbed", "line": {"color": "#DB2828", "dash": "dash"}, "name": "Estimated total data", "showlegend": true, "type": "scatter", "x": ["2008-01-01T00:00:00Z", "2008-02-01T00:00:00Z", "2008-03-01T00:00:00Z", "2008-04-01T00:00:00Z", "2008-05-01T00:00:00Z", "2008-06-01T00:00:00Z", "2008-07-01T00:00:00Z", "2008-08-01T00:00:00Z", "2008-09-01T00:00:00Z", "2008-10-01T00:00:00Z", "2008-11-01T00:00:00Z", "2008-12-01T00:00:00Z", "2009-01-01T00:00:00Z", "2009-02-01T00:00:00Z", "2009-03-01T00:00:00Z", "2009-04-01T00:00:00Z", "2009-05-01T00:00:00Z", "2009-06-01T00:00:00Z", "2009-07-01T00:00:00Z", "2009-08-01T00:00:00Z", "2009-09-01T00:00:00Z", "2009-10-01T00:00:00Z", "2009-11-01T00:00:00Z", "2009-12-01T00:00:00Z", "2010-01-01T00:00:00Z", "2010-02-01T00:00:00Z", "2010-03-01T00:00:00Z", "2010-04-01T00:00:00Z", "2010-05-01T00:00:00Z", "2010-06-01T00:00:00Z", "2010-07-01T00:00:00Z", "2010-08-01T00:00:00Z", "2010-09-01T00:00:00Z", "2010-10-01T00:00:00Z", "2010-11-01T00:00:00Z", "2010-12-01T00:00:00Z", "2011-01-01T00:00:00Z", "2011-02-01T00:00:00Z", "2011-03-01T00:00:00Z", "2011-04-01T00:00:00Z", "2011-05-01T00:00:00Z", "2011-06-01T00:00:00Z", "2011-07-01T00:00:00Z", "2011-08-01T00:00:00Z", "2011-09-01T00:00:00Z", "2011-10-01T00:00:00Z", "2011-11-01T00:00:00Z", "2011-12-01T00:00:00Z", "2012-01-01T00:00:00Z", "2012-02-01T00:00:00Z", "2012-03-01T00:00:00Z", "2012-04-01T00:00:00Z", "2012-05-01T00:00:00Z", "2012-06-01T00:00:00Z", "2012-07-01T00:00:00Z", "2012-08-01T00:00:00Z", "2012-09-01T00:00:00Z", "2012-10-01T00:00:00Z", "2012-11-01T00:00:00Z", "2012-12-01T00:00:00Z", "2013-01-01T00:00:00Z", "2013-02-01T00:00:00Z", "2013-03-01T00:00:00Z", "2013-04-01T00:00:00Z", "2013-05-01T00:00:00Z", "2013-06-01T00:00:00Z", "2013-07-01T00:00:00Z", "2013-08-01T00:00:00Z", "2013-09-01T00:00:00Z", "2013-10-01T00:00:00Z", "2013-11-01T00:00:00Z", "2013-12-01T00:00:00Z", "2014-01-01T00:00:00Z", "2014-02-01T00:00:00Z", "2014-03-01T00:00:00Z", "2014-04-01T00:00:00Z", "2014-05-01T00:00:00Z", "2014-06-01T00:00:00Z", "2014-07-01T00:00:00Z", "2014-08-01T00:00:00Z", "2014-09-01T00:00:00Z", "2014-10-01T00:00:00Z", "2014-11-01T00:00:00Z", "2014-12-01T00:00:00Z", "2015-01-01T00:00:00Z", "2015-02-01T00:00:00Z", "2015-03-01T00:00:00Z", "2015-04-01T00:00:00Z", "2015-05-01T00:00:00Z", "2015-06-01T00:00:00Z", "2015-07-01T00:00:00Z", "2015-08-01T00:00:00Z", "2015-09-01T00:00:00Z", "2015-10-01T00:00:00Z", "2015-11-01T00:00:00Z", "2015-12-01T00:00:00Z", "2016-01-01T00:00:00Z", "2016-02-01T00:00:00Z", "2016-03-01T00:00:00Z", "2016-04-01T00:00:00Z", "2016-05-01T00:00:00Z", "2016-06-01T00:00:00Z", "2016-07-01T00:00:00Z", "2016-08-01T00:00:00Z", "2016-09-01T00:00:00Z", "2016-10-01T00:00:00Z", "2016-11-01T00:00:00Z", "2016-12-01T00:00:00Z", "2017-01-01T00:00:00Z", "2017-02-01T00:00:00Z", "2017-03-01T00:00:00Z", "2017-04-01T00:00:00Z", "2017-05-01T00:00:00Z", "2017-06-01T00:00:00Z", "2017-07-01T00:00:00Z", "2017-08-01T00:00:00Z", "2017-09-01T00:00:00Z", "2017-10-01T00:00:00Z", "2017-11-01T00:00:00Z", "2017-12-01T00:00:00Z", "2018-01-01T00:00:00Z", "2018-02-01T00:00:00Z", "2018-03-01T00:00:00Z", "2018-04-01T00:00:00Z", "2018-05-01T00:00:00Z", "2018-06-01T00:00:00Z", "2018-07-01T00:00:00Z", "2018-08-01T00:00:00Z", "2018-09-01T00:00:00Z", "2018-10-01T00:00:00Z", "2018-11-01T00:00:00Z", "2018-12-01T00:00:00Z", "2019-01-01T00:00:00Z", "2019-02-01T00:00:00Z", "2019-03-01T00:00:00Z", "2019-04-01T00:00:00Z", "2019-05-01T00:00:00Z", "2019-06-01T00:00:00Z", "2019-07-01T00:00:00Z", "2019-08-01T00:00:00Z", "2019-09-01T00:00:00Z", "2019-10-01T00:00:00Z", "2019-11-01T00:00:00Z", "2019-12-01T00:00:00Z", "2020-01-01T00:00:00Z", "2020-02-01T00:00:00Z", "2020-03-01T00:00:00Z", "2020-04-01T00:00:00Z", "2020-05-01T00:00:00Z", "2020-06-01T00:00:00Z", "2020-07-01T00:00:00Z", "2020-08-01T00:00:00Z", "2020-09-01T00:00:00Z", "2020-10-01T00:00:00Z", "2020-11-01T00:00:00Z", "2020-12-01T00:00:00Z", "2021-01-01T00:00:00Z", "2021-02-01T00:00:00Z", "2021-03-01T00:00:00Z", "2021-04-01T00:00:00Z", "2021-05-01T00:00:00Z", "2021-06-01T00:00:00Z", "2021-07-01T00:00:00Z", "2021-08-01T00:00:00Z", "2021-09-01T00:00:00Z", "2021-10-01T00:00:00Z", "2021-11-01T00:00:00Z", "2021-12-01T00:00:00Z", "2022-01-01T00:00:00Z", "2022-02-01T00:00:00Z", "2022-03-01T00:00:00Z", "2022-04-01T00:00:00Z", "2022-05-01T00:00:00Z", "2022-06-01T00:00:00Z", "2022-07-01T00:00:00Z", "2022-08-01T00:00:00Z", "2022-09-01T00:00:00Z", "2022-10-01T00:00:00Z", "2022-11-01T00:00:00Z", "2022-12-01T00:00:00Z", "2023-01-01T00:00:00Z", "2023-02-01T00:00:00Z", "2023-03-01T00:00:00Z", "2023-04-01T00:00:00Z", "2023-05-01T00:00:00Z", "2023-06-01T00:00:00Z", "2023-07-01T00:00:00Z", "2023-08-01T00:00:00Z", "2023-09-01T00:00:00Z", "2023-10-01T00:00:00Z", "2023-11-01T00:00:00Z", "2023-12-01T00:00:00Z", "2024-01-01T00:00:00Z", "2024-02-01T00:00:00Z", "2024-03-01T00:00:00Z", "2024-04-01T00:00:00Z", "2024-05-01T00:00:00Z", "2024-06-01T00:00:00Z", "2024-07-01T00:00:00Z", "2024-08-01T00:00:00Z", "2024-09-01T00:00:00Z", "2024-10-01T00:00:00Z", "2024-11-01T00:00:00Z", "2024-12-01T00:00:00Z", "2025-01-01T00:00:00Z", "2025-02-01T00:00:00Z"], "y": [29473, 29473, 29473, 29473, 29473, 29473, 29473, 29473, 29473, 29473, 29473, 29473, 29473, 29473, 29473, 29473, 29473, 29473, 29473, 29473, 29473, 29473, 29473, 29473, 29473, 29473, 29473, 29473, 29473, 29473, 29473, 29473, 29473, 29473, 29473, 29473, 29473, 29473, 29473, 29473, 29473, 29473, 29473, 29473, 29473, 29473, 29473, 29473, 29473, 29473, 29473, 29473, 29473, 29473, 29473, 29473, 29473, 29473, 29473, 29473, 29473, 29473, 29473, 29473, 29473, 29473, 29473, 29473, 29473, 29473, 29473, 29473, 29473, 29473, 29473, 29473, 29473, 29473, 29473, 29473, 29473, 29473, 29473, 29473, 29473, 29473, 29473, 29473, 29473, 29473, 29473, 29473, 29473, 29473, 29473, 29473, 29473, 29473, 29473, 29473, 29473, 29473, 29473, 29473, 29473, 29473, 29473, 29473, 29473, 29473, 29473, 29473, 29473, 29473, 29473, 29473, 29473, 29473, 29473, 29473, 29473, 29473, 29473, 29473, 29473, 29473, 29473, 29473, 29473, 29473, 29473, 29473, 29473, 29473, 29473, 29473, 29473, 29473, 29473, 29473, 29473, 29473, 29473, 29473, 29473, 29473, 29473, 29473, 29473, 29473, 29473, 29473, 29473, 29473, 29473, 29473, 29473, 29473, 29473, 29473, 29473, 29473, 29473, 29473, 29473, 29473, 29473, 29473, 29473, 29473, 29473, 29473, 29473, 29473, 29473, 29473, 29473, 29473, 29473, 29473, 29473, 29473, 29473, 29473, 29473, 29473, 29473, 29473, 29473, 29473, 29473, 29473, 29473, 29473, 29473, 29473, 29473, 29473, 29473, 29473, 29473, 29473, 29473, 29473, 29473, 29473]}], "layout": {"images": [{"layer": "below", "opacity": 0.3, "sizex": 0.2, "sizey": 0.2, "sizing": "contain", "source": "https://raw.githubusercontent.com/GIScience/ohsome-quality-api/refs/heads/figure_background_logo/ohsome_quality_api/indicators/heigit_logo.png", "x": 0.8, "xref": "paper", "y": -0.1, "yref": "paper"}], "legend": {"bgcolor": "rgba(255,255,255,0.66)", "x": 0.02, "y": 0.85}, "showlegend": true, "title": {"text": "Mapping Saturation"}, "xaxis": {"ticks": "outside", "title": {"text": "Date"}}, "yaxis": {"range": [1.0, 31854], "title": {"text": "Count"}}}} diff --git a/tests/approvals/integrationtests/indicators/test_road_comparison.py-TestFigure-test_create_figure.approved.json b/tests/approvals/integrationtests/indicators/test_road_comparison.py-TestFigure-test_create_figure.approved.json index fa7fbbe1b..3764031ae 100644 --- a/tests/approvals/integrationtests/indicators/test_road_comparison.py-TestFigure-test_create_figure.approved.json +++ b/tests/approvals/integrationtests/indicators/test_road_comparison.py-TestFigure-test_create_figure.approved.json @@ -44,6 +44,20 @@ ], "layout": { "barmode": "stack", + "images": [ + { + "layer": "below", + "opacity": 0.3, + "sizex": 0.2, + "sizey": 0.2, + "sizing": "contain", + "source": "https://raw.githubusercontent.com/GIScience/ohsome-quality-api/refs/heads/figure_background_logo/ohsome_quality_api/indicators/heigit_logo.png", + "x": 0.8, + "xref": "paper", + "y": -0.1, + "yref": "paper" + } + ], "legend": { "entrywidth": 270, "orientation": "h",