Skip to content

Commit d4d0ed0

Browse files
committed
Bugfixes
1 parent 05cb5c6 commit d4d0ed0

File tree

2 files changed

+5
-5
lines changed

2 files changed

+5
-5
lines changed

mkdocs.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -65,7 +65,7 @@ plugins:
6565
scripts:
6666
- scripts/gen_ref_pages.py
6767
- literate-nav:
68-
nav_vile: SUMMARY.md
68+
nav_file: SUMMARY.md
6969
- section-index
7070
- mkdocstrings:
7171
default_handler: python

src/rra_building_density/constants.py

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -74,16 +74,16 @@ def process_resources(self, resolution: str) -> tuple[str, str]:
7474
"5": MicrosoftVersion(
7575
version="v5",
7676
time_points=[
77-
f"{y}q{q}" for q, y in itertools.product(range(1, 5), range(2020, 2024))
78-
][2:],
77+
f"{y}q{q}" for y, q in itertools.product(range(2020, 2024), range(1, 5))
78+
][1:],
7979
input_template="predictions/{time_point}/az_8_ensemble/*",
8080
raw_output_template="{time_point}/{tile_key}.tif",
8181
),
8282
"6": MicrosoftVersion(
8383
version="v6",
8484
time_points=[
85-
f"{y}q{q}" for q, y in itertools.product(range(1, 5), range(2020, 2024))
86-
][2:],
85+
f"{y}q{q}" for y, q in itertools.product(range(2020, 2024), range(1, 5))
86+
][1:],
8787
input_template="predictions/{time_point}/az_8_ensemble_v6/*",
8888
raw_output_template="{time_point}/{tile_key}.tif",
8989
),

0 commit comments

Comments
 (0)