Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
L
LOFAR Station Client
Manage
Activity
Members
Labels
Plan
Jira
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Locked files
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Package registry
Container registry
Model registry
Operate
Terraform modules
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Code review analytics
Insights
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
This is an archived project. Repository and other project resources are read-only.
Show more breadcrumbs
LOFAR2.0
LOFAR Station Client
Merge requests
!23
Implement HDF5 file reader class
Code
Review changes
Check out branch
Open in Workspace
Download
Patches
Plain diff
Closed
Implement HDF5 file reader class
L2SS-1063-hdf5_reader
into
main
Overview
0
Commits
12
Pipelines
8
Changes
12
Closed
Hannes Feldt
requested to merge
L2SS-1063-hdf5_reader
into
main
2 years ago
Overview
0
Commits
12
Pipelines
8
Changes
12
Expand
Closes
L2SS-1063
0
0
Merge request reports
Compare
main
version 7
39ba11b9
2 years ago
version 6
087089ad
2 years ago
version 5
1bb8a985
2 years ago
version 4
a5529623
2 years ago
version 3
b2dd5694
2 years ago
version 2
738e81b7
2 years ago
version 1
556b5caa
2 years ago
main (base)
and
latest version
latest version
1e079d86
12 commits,
2 years ago
version 7
39ba11b9
11 commits,
2 years ago
version 6
087089ad
10 commits,
2 years ago
version 5
1bb8a985
9 commits,
2 years ago
version 4
a5529623
8 commits,
2 years ago
version 3
b2dd5694
7 commits,
2 years ago
version 2
738e81b7
6 commits,
2 years ago
version 1
556b5caa
5 commits,
2 years ago
12 files
+
479
−
0
Inline
Compare changes
Side-by-side
Inline
Show whitespace changes
Show one file at a time
Files
12
Search (e.g. *.vue) (Ctrl+P)
lofar_station_client/file_access/__init__.py
0 → 100644
+
12
−
0
Options
# Copyright (C) 2022 ASTRON (Netherlands Institute for Radio Astronomy)
# SPDX-License-Identifier: Apache-2.0
"""
Contains classes to interact with (hdf5) files
"""
from
._hdf5_member_def
import
member
from
.file_reader
import
Hdf5FileReader
,
read_hdf5
__all__
=
[
"
Hdf5FileReader
"
,
"
member
"
,
"
read_hdf5
"
]
Loading