Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
finam
Manage
Activity
Members
Labels
Plan
Issues
32
Issue boards
Milestones
Code
Merge requests
3
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Model registry
Monitor
Service Desk
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
Terms and privacy
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
FINAM
finam
Commits
4711d2b0
Commit
4711d2b0
authored
1 year ago
by
Sebastian Müller
🐈
Browse files
Options
Downloads
Patches
Plain Diff
prevent rmul data with units
parent
56511feb
No related branches found
No related tags found
1 merge request
!260
Masked array support
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
src/finam/adapters/base.py
+8
-5
8 additions, 5 deletions
src/finam/adapters/base.py
src/finam/modules/readers.py
+2
-2
2 additions, 2 deletions
src/finam/modules/readers.py
with
10 additions
and
7 deletions
src/finam/adapters/base.py
+
8
−
5
View file @
4711d2b0
...
...
@@ -4,7 +4,7 @@ Basic data transformation adapters.
import
numpy
as
np
from
..data.grid_spec
import
NoGrid
from
..data.tools
import
get_magnitude
,
get_units
from
..data.tools
import
get_magnitude
,
get_units
,
quantify
from
..errors
import
FinamMetaDataError
from
..sdk
import
Adapter
from
..tools.log_helper
import
ErrorLogger
...
...
@@ -139,9 +139,12 @@ class ValueToGrid(Adapter):
data-set for the requested time.
"""
value
=
self
.
pull_data
(
time
,
target
)
return
np
.
full
(
self
.
_info
.
grid
.
data_shape
,
get_magnitude
(
value
),
dtype
=
value
.
dtype
)
*
get_units
(
value
)
return
quantify
(
np
.
full
(
self
.
_info
.
grid
.
data_shape
,
get_magnitude
(
value
),
dtype
=
value
.
dtype
),
get_units
(
value
),
)
def
_get_info
(
self
,
info
):
up_info
=
info
.
copy_with
(
grid
=
NoGrid
())
...
...
@@ -196,7 +199,7 @@ class GridToValue(Adapter):
"""
grid
=
self
.
pull_data
(
time
,
target
)
func_result
=
self
.
func
(
get_magnitude
(
grid
))
*
get_units
(
grid
)
func_result
=
quantify
(
self
.
func
(
get_magnitude
(
grid
))
,
get_units
(
grid
)
)
return
func_result
...
...
This diff is collapsed.
Click to expand it.
src/finam/modules/readers.py
+
2
−
2
View file @
4711d2b0
...
...
@@ -7,7 +7,7 @@ from datetime import datetime
from
finam.interfaces
import
ComponentStatus
from
..data.grid_spec
import
NoGrid
from
..data.tools
import
UNITS
,
Info
from
..data.tools
import
Info
,
quantify
from
..sdk
import
TimeComponent
...
...
@@ -151,7 +151,7 @@ class CsvReader(TimeComponent):
time
=
datetime
.
strptime
(
row
[
self
.
_time_column
],
self
.
_date_format
)
out_data
=
{
name
:
row
[
name
]
*
UNITS
.
Unit
(
units
)
name
:
quantify
(
row
[
name
],
units
)
for
name
,
units
in
self
.
_output_units
.
items
()
}
...
...
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