Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Open sidebar
JOSSOUD Olivier
WIM Collect
Commits
662aeb9d
Commit
662aeb9d
authored
Jan 22, 2020
by
JOSSOUD Olivier
Browse files
Quickviz. Quick and dirty way to skip errors...
parent
a454dcf1
Pipeline
#57020
passed with stages
in 56 seconds
Changes
1
Pipelines
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
16 additions
and
4 deletions
+16
-4
wimcollect/main.py
wimcollect/main.py
+16
-4
No files found.
wimcollect/main.py
View file @
662aeb9d
...
...
@@ -108,14 +108,26 @@ def quickviz_antarctica():
args
=
parser
.
parse_args
()
httpddu_col
=
httpddu
.
Collector
(
config_parser
,
log
)
httpddu_col
.
download_picarro
(
args
.
day
)
try
:
httpddu_col
.
download_picarro
(
args
.
day
)
except
:
pass
sshdmc_col
=
sshdmc
.
Collector
(
config_parser
,
log
)
sshdmc_col
.
download_picarro
(
args
.
day
)
try
:
sshdmc_col
.
download_picarro
(
args
.
day
)
except
:
pass
vizual
=
quickviz
.
Visualizator
(
config_parser
,
log
)
vizual
.
create_data_source_file
(
"DDU"
,
"HIDS2189"
,
args
.
day
)
vizual
.
create_data_source_file
(
"DMC"
,
"HIDS2319"
,
args
.
day
)
try
:
vizual
.
create_data_source_file
(
"DDU"
,
"HIDS2189"
,
args
.
day
)
except
:
pass
try
:
vizual
.
create_data_source_file
(
"DMC"
,
"HIDS2319"
,
args
.
day
)
except
:
pass
def
format_date
(
string
:
str
)
->
datetime
.
date
:
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment