Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
K
km3mon
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Container Registry
Model registry
Operate
Environments
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
km3py
km3mon
Commits
eed1dfc2
Commit
eed1dfc2
authored
4 years ago
by
Carlo Guidi
Browse files
Options
Downloads
Patches
Plain Diff
Update acoustics.py
parent
e6209a49
No related branches found
Branches containing commit
No related tags found
3 merge requests
!21
Resolve "Integrate Online Acoustic Monitoring script for ORCA site and ARCA site"
,
!17
Update Acoustic Monitoring Program
,
!10
Fix acoustics route
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
scripts/acoustics.py
+22
-16
22 additions, 16 deletions
scripts/acoustics.py
with
22 additions
and
16 deletions
scripts/acoustics.py
+
22
−
16
View file @
eed1dfc2
...
...
@@ -16,6 +16,8 @@ Options:
from
datetime
import
datetime
import
os
import
time
import
http
import
ssl
import
matplotlib
matplotlib
.
use
(
"
Agg
"
)
...
...
@@ -68,7 +70,7 @@ while check:
mintime
=
mintime1
.
values
maxrun
=
table
[
"
RUN
"
][
len
(
table
[
"
RUN
"
])
-
1
]
now
=
time
.
time
()
now
=
now
-
600
now
=
now
-
TIT
if
(
now
-
mintime
/
1000
)
<
TIT
:
minrun
=
table
[
"
RUN
"
][
len
(
table
[
"
RUN
"
])
-
1
]
-
1
print
(
now
)
...
...
@@ -280,9 +282,13 @@ while check:
N_Pulses_Indicator_DU
.
append
(
-
1.5
)
except
(
TypeError
,
ValueError
TypeError
,
ValueError
,
http
.
client
.
RemoteDisconnected
,
ssl
.
SSLError
):
# TypeError if no data found for a certain piezo, ValueError if there are zero data for a certain piezo
N_Pulses_Indicator_DU
.
append
(
-
1.5
)
except
(
http
.
client
.
RemoteDisconnected
,
ssl
.
SSLError
):
# Bad connection to the DB
N_Pulses_Indicator_DU
.
append
(
-
2.5
)
# To avoid to take wrong beacon signals
...
...
@@ -309,8 +315,7 @@ while check:
N_Pulses_Indicator
.
append
(
N_Pulses_Indicator_DU
)
fig
=
plt
.
figure
()
ax
=
fig
.
add_subplot
(
111
)
fig
,
ax
=
plt
.
subplots
(
figsize
=
(
9
,
7
))
duab
=
[]
DUs
=
[]
...
...
@@ -333,9 +338,9 @@ while check:
iAB2
.
append
(
3
*
i
+
1
)
iAB3
.
append
(
3
*
i
+
2
)
colorsList
=
[(
0
,
0
,
0
),
(
1
,
0.3
,
0
),
(
1
,
1
,
0
),
(
0.2
,
0.9
,
0
)]
colorsList
=
[
(
0.6
,
0
,
1
),
(
0
,
0
,
0
),
(
1
,
0.3
,
0
),
(
1
,
1
,
0
),
(
0.2
,
0.9
,
0
)]
CustomCmap
=
matplotlib
.
colors
.
ListedColormap
(
colorsList
)
bounds
=
[
-
2
,
-
1
,
0
,
1
,
2
]
bounds
=
[
-
3
,
-
2
,
-
1
,
0
,
1
,
2
]
norma
=
colors
.
BoundaryNorm
(
bounds
,
CustomCmap
.
N
)
for
du
in
DUS
:
color
=
ax
.
scatter
(
duab
[
du
-
1
][
0
],
...
...
@@ -363,16 +368,16 @@ while check:
cbar
=
plt
.
colorbar
(
color
)
cbar
.
ax
.
get_yaxis
().
set_ticks
([])
for
j
,
lab
in
enumerate
(
[
'
$0. pings$
'
,
'
$1-3 pings$
'
,
'
$4-7 pings$
'
,
'
$>7. pings$
'
]):
cbar
.
ax
.
text
(
3.5
,
(
2
*
j
+
1
)
/
8.0
,
lab
,
ha
=
'
center
'
,
va
=
'
center
'
)
[
'
$
No DB conn.$
'
,
'
$
0. pings$
'
,
'
$1-3 pings$
'
,
'
$4-7 pings$
'
,
'
$>7. pings$
'
]):
cbar
.
ax
.
text
(
4
,
(
1.5
*
j
+
1
)
/
8.0
,
lab
,
ha
=
'
center
'
,
va
=
'
center
'
)
cbar
.
ax
.
get_yaxis
().
labelpad
=
18
matplotlib
.
pyplot
.
xticks
(
np
.
arange
(
1
,
max
(
DUS
)
+
1
,
step
=
1
))
matplotlib
.
pyplot
.
yticks
(
np
.
arange
(
0
,
19
,
step
=
1
))
matplotlib
.
pyplot
.
grid
(
color
=
'
k
'
,
linestyle
=
'
-
'
,
linewidth
=
0.2
)
ax
.
set_
xticks
(
np
.
arange
(
1
,
max
(
DUS
)
+
1
,
step
=
1
))
ax
.
set_
yticks
(
np
.
arange
(
0
,
19
,
step
=
1
))
ax
.
grid
(
color
=
'
k
'
,
linestyle
=
'
-
'
,
linewidth
=
0.2
)
ax
.
set_xlabel
(
'
DUs
'
,
fontsize
=
18
)
ax
.
set_ylabel
(
'
Floors
'
,
fontsize
=
18
)
ts
=
now
+
3600
ts
=
now
DATE
=
datetime
.
utcfromtimestamp
(
ts
).
strftime
(
'
%Y-%m-%d %H:%M:%S
'
)
ax
.
set_title
(
r
'
%.16s Detection of the pings emitted by autonomous beacons
'
%
DATE
,
...
...
@@ -382,12 +387,13 @@ while check:
my_file
=
'
Online_Acoustic_Monitoring.png
'
fig
.
savefig
(
os
.
path
.
join
(
my_path
,
my_file
))
plt
.
close
(
'
all
'
)
print
(
time
.
time
())
check
=
False
check_time
=
time
.
time
()
-
now
check_time
=
time
.
time
()
-
now
-
TIT
print
(
check_time
)
time
.
sleep
(
abs
(
2
*
TIT
-
check_time
))
check
=
True
time
.
sleep
(
abs
(
TIT
-
check_time
))
check
=
True
\ No newline at end of file
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment