-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpaths_todo.py
23 lines (20 loc) · 1.02 KB
/
paths_todo.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
import os
# you can change these paths to match your own folder structure
def get_default_path_dict() -> dict:
base_folder = ""
path_dict = {
"das": os.path.join(base_folder, "das", "das_full.nc"),
"pylons": os.path.join(base_folder, "das", "pylons.csv"),
"fiber_raw": os.path.join(base_folder, "das", "export.geojson"),
"fiber_segments": os.path.join(base_folder, "das", "fiber_segments.geojson"),
"fiber_points": os.path.join(base_folder, "das", "fiber_points.geojson"),
"channels": os.path.join(base_folder, "das", "channels.csv"),
"channels_osm": os.path.join(base_folder, "das", "channels_osm.csv"),
"analysis": os.path.join(base_folder, "wind", "202401_medium.nc"),
"kakern_bru": os.path.join(base_folder, "wind", "kakernbru"),
"leknes_lufthavn": os.path.join(base_folder, "wind", "leknes_lufthavn"),
"dataset_a": os.path.join(base_folder, "complete_datasets", "a.csv"),
}
return path_dict
def get_out_dir() -> str:
return "results"