Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Refactor ECCC functionality and create Preprocess module #165

Draft
wants to merge 37 commits into
base: main
Choose a base branch
from
Draft
Show file tree
Hide file tree
Changes from 25 commits
Commits
Show all changes
37 commits
Select commit Hold shift + click to select a range
7a9d15c
WIP - major refactoring of ECCC
Zeitsperre Jun 19, 2023
d1a8c67
WIP - more units handling
Zeitsperre Jun 20, 2023
94fe866
WIP - more refactoring - AHCCD incomplete
Zeitsperre Jun 20, 2023
d63523b
broken - refactoring of station writer
Zeitsperre Jun 21, 2023
500ae2a
broken - more refactoring
Zeitsperre Jul 6, 2023
c781287
broken - more refactoring
Zeitsperre Jul 6, 2023
8cf4368
Merge branch 'main' into fix_eccc
Zeitsperre Jul 31, 2023
ce2f6d9
significant refactoring - WIP
Zeitsperre Aug 2, 2023
9baaad5
working version of ahccd conversion
Zeitsperre Aug 3, 2023
53fc8f0
working version of ahccd conversion
Zeitsperre Aug 7, 2023
f454cb6
naming and more dynamic handling of variables
Zeitsperre Aug 7, 2023
9339f30
working version
Zeitsperre Aug 7, 2023
e096824
begin work on obs-summaries
Zeitsperre Aug 7, 2023
268cca1
finishing touches on ahccd
Zeitsperre Aug 9, 2023
8728c66
significant refactoring
Zeitsperre Aug 9, 2023
010d3ea
reduce amount of unit conversions
Zeitsperre Aug 10, 2023
7d8fdf9
refactoring - move treatments to new module, load_json_data_mappings …
Zeitsperre Aug 14, 2023
318957e
more refactoring
Zeitsperre Aug 14, 2023
42b8056
merge main into fix-eccc
Zeitsperre Feb 29, 2024
f5ca682
fix metadata, adjust tests
Zeitsperre Feb 29, 2024
412681c
Merge branch 'main' into fix_eccc
Zeitsperre Mar 4, 2024
c2e442a
error handling
Zeitsperre Mar 6, 2024
f5fce92
better error handling
Zeitsperre Mar 6, 2024
75e8015
import fixes
Zeitsperre Mar 6, 2024
c41e687
Merge branch 'main' into fix_eccc
Zeitsperre Mar 18, 2024
8c4ffcc
fix logic
Zeitsperre Mar 18, 2024
448ba07
fix logic
Zeitsperre Mar 18, 2024
53b9c35
fix logic
Zeitsperre Mar 18, 2024
159fc94
add files to sdist
Zeitsperre Mar 18, 2024
586f4e6
synchronize dependencies
Zeitsperre Mar 18, 2024
6c5586b
debugging
Zeitsperre Mar 18, 2024
e2762d3
chase down bug
Zeitsperre Mar 18, 2024
d20be40
update attr treatments
Zeitsperre Mar 19, 2024
74e7949
fixes
Zeitsperre Mar 19, 2024
42b957d
fix folder name
Zeitsperre Mar 19, 2024
288582f
add support for new `h` freq
Zeitsperre Mar 27, 2024
55ee882
dependencies
Zeitsperre Mar 27, 2024
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 2 additions & 1 deletion miranda/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -24,14 +24,15 @@
from . import (
archive,
convert,
cv,
decode,
io,
preprocess,
scripting,
structure,
units,
utils,
validators,
vocabularies,
)
from .data import DataBase
from .storage import FileMeta, StorageState
5 changes: 1 addition & 4 deletions miranda/convert/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,9 +2,6 @@

from __future__ import annotations

from . import deh, eccc, ecmwf, hq, melcc, utils
from . import deh, hq, melcc, utils
from ._aggregation import *
from ._data_corrections import *
from ._data_definitions import *

# from ._reconstruction import *
Loading
Loading