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
4
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
f1cca6eb
Commit
f1cca6eb
authored
1 year ago
by
Sebastian Müller
🐈
Browse files
Options
Downloads
Patches
Plain Diff
info: check grids not None before mask checking
parent
0c9e4a9b
No related branches found
Branches containing commit
No related tags found
Tags containing commit
1 merge request
!258
Grid mask support
Pipeline
#181357
passed with stages
in 5 minutes and 6 seconds
Changes
1
Pipelines
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
src/finam/data/tools.py
+5
-1
5 additions, 1 deletion
src/finam/data/tools.py
with
5 additions
and
1 deletion
src/finam/data/tools.py
+
5
−
1
View file @
f1cca6eb
...
...
@@ -658,7 +658,11 @@ class Info:
if
self
.
grid
is
not
None
and
not
self
.
grid
.
compatible_with
(
incoming
.
grid
):
if
not
(
ignore_none
and
incoming
.
grid
is
None
):
fail_info
[
"
grid
"
]
=
(
incoming
.
grid
,
self
.
grid
)
if
not
check_mask_equal
(
self
.
grid
,
incoming
.
grid
):
if
(
incoming
.
grid
is
not
None
and
self
.
grid
is
not
None
and
not
check_mask_equal
(
self
.
grid
,
incoming
.
grid
)
):
in_mask
=
(
np
.
sum
(
incoming
.
grid
.
mask
)
if
incoming
.
grid
.
mask
is
not
None
...
...
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