Skip to content
GitLab
Menu
Projects
Groups
Snippets
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Menu
Open sidebar
oeigner
LINK - Forschungsprojekt Repo
Commits
2fdebc92
Commit
2fdebc92
authored
Jan 21, 2022
by
Fabian Kovac
Browse files
added AttnStd to output df
parent
701e531a
Changes
1
Hide whitespace changes
Inline
Side-by-side
FHSTP/01_data_preparation/prep.py
View file @
2fdebc92
...
...
@@ -3,7 +3,7 @@
# Author: Fabian Kovac <fabian.kovac@fhstp.ac.at>
# Team: University of Applied Sciences St. Pölten
# Version: 4.1
# Last changed: 2022-01-2
0
# Last changed: 2022-01-2
1
#
import
sys
...
...
@@ -580,7 +580,7 @@ def prep() -> None:
_log
(
'
\n
******************************** CALC POWER LEVELS *************************'
)
# load dry LINK attenuation statistics
df_stats
=
pd
.
read_csv
(
'00_Link_dry_attnstats.csv'
,
sep
=
';'
)
df_stats
=
pd
.
read_csv
(
'
files_from_H3A/
00_Link_dry_attnstats.csv'
,
sep
=
';'
)
# merge mean and std attenuation to transmission dataframe
df_link
=
pd
.
merge
(
df_link
,
df_stats
,
how
=
'left'
,
left_on
=
'LINKID'
,
right_on
=
'LINKID'
)
...
...
@@ -620,6 +620,7 @@ def prep() -> None:
'PMAX'
:
'RxLevelMax'
,
'TXLEVEL'
:
'TxLevel'
,
'ATTENUATION'
:
'Attn'
,
'ATTENUATIONSTD'
:
'AttnStd'
,
'ATTENUATIONMEANDRY'
:
'AttnMeanDry'
,
'ATTENUATIONSTDDRY'
:
'AttnStdDry'
,
'ATTENUATIONDIFF'
:
'AttnDiff'
,
...
...
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