Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
25 commits
Select commit Hold shift + click to select a range
6e33a3e
Add a taskmanagers module
jnsebgosselin Nov 5, 2020
edc78eb
Add a DataGapfillManager class
jnsebgosselin Nov 5, 2020
dddb5a8
Rename DataGapfiller -> DataGapfillWorker and inherit from WorkerBase
jnsebgosselin Nov 5, 2020
7dad736
DataGapfillWorker: rework gapfill_data to take arguments
jnsebgosselin Nov 5, 2020
9e67c7a
WeatherDataGapfiller: use the new DataGapfillManager
jnsebgosselin Nov 5, 2020
518d4cc
DataGapfillWorker: add substeps increment in sig_gapfill_progress
jnsebgosselin Nov 5, 2020
ff29533
WeatherDataGapfiller: reorganize code
jnsebgosselin Nov 5, 2020
e36ad2e
WeatherDataGapfiller: move get_gapfill_parameters
jnsebgosselin Nov 5, 2020
6fb592c
DataGapfillManager: add logic for status messages
jnsebgosselin Nov 5, 2020
bedc38b
DataGapfillManager: add logic to set target station
jnsebgosselin Nov 5, 2020
d2ec8f8
DataGapfillWorker: fix missing data warning in gapfill_data
jnsebgosselin Nov 5, 2020
6d615a7
WeatherDataGapfiller: don't freeze ui when calculating corr coeff
jnsebgosselin Nov 5, 2020
f15b948
DataGapfillManager: add get_station_names and get_station_ids methods
jnsebgosselin Nov 5, 2020
4674c4d
DataGapfillManager: add load_data
jnsebgosselin Nov 5, 2020
6c53d79
WeatherDataGapfiller: dont block ui when loading data
jnsebgosselin Nov 5, 2020
81441c6
Add status text in a status bar
jnsebgosselin Nov 5, 2020
6f27d3c
Rename sig_gapfill_progress -> sig_task_progress
jnsebgosselin Nov 5, 2020
d866b15
Add load data progress
jnsebgosselin Nov 5, 2020
7718b00
Update file headers and imports
jnsebgosselin Nov 5, 2020
184bac9
Ignore pep8 E123 error
jnsebgosselin Nov 5, 2020
cd2a9c1
Update test_load_data
jnsebgosselin Nov 6, 2020
46a00ec
test_load_data: track when loading data is in progress
jnsebgosselin Nov 6, 2020
4ea4268
Merge remote-tracking branch 'refs/remotes/origin/master' into load_d…
jnsebgosselin Nov 6, 2020
4eb11a7
Merge remote-tracking branch 'refs/remotes/origin/master' into load_d…
jnsebgosselin Nov 6, 2020
05d67e1
Merge remote-tracking branch 'refs/remotes/origin/master' into load_d…
jnsebgosselin Nov 6, 2020
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
1 change: 1 addition & 0 deletions .pep8speaks.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,3 +7,4 @@ pycodestyle:
ignore: # Errors and warnings to ignore
- E402 # module level import not at top of file
- W504 # line break after binary operator
- E123 # closing bracket does not match indentation of opening bracket's line
Loading