Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
R
rechunk-data
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Package registry
Container Registry
Model registry
Operate
Environments
Terraform modules
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
ch1187
rechunk-data
Merge requests
!13
Use netcdf4 as default engine
Code
Review changes
Check out branch
Download
Patches
Plain diff
Merged
Use netcdf4 as default engine
use-netcdf4
into
main
Overview
0
Commits
2
Pipelines
2
Changes
3
Merged
Martin Bergemann
requested to merge
use-netcdf4
into
main
2 years ago
Overview
0
Commits
2
Pipelines
2
Changes
3
Expand
0
0
Merge request reports
Compare
main
version 1
af98cf81
2 years ago
main (base)
and
latest version
latest version
2398e787
2 commits,
2 years ago
version 1
af98cf81
1 commit,
2 years ago
3 files
+
25
−
11
Inline
Compare changes
Side-by-side
Inline
Show whitespace changes
Show one file at a time
Files
3
Search (e.g. *.vue) (Ctrl+P)
src/rechunk_data/__init__.py
+
2
−
2
Options
@@ -10,7 +10,7 @@ from ._rechunk import (
logger
,
)
__version__
=
"
2
208
.0.
1
"
__version__
=
"
2
301
.0.
0
"
PROGRAM_NAME
=
"
rechunk-data
"
@@ -48,7 +48,7 @@ def parse_args(argv: Optional[List[str]]) -> argparse.Namespace:
"
--netcdf-engine
"
,
help
=
(
"
The netcdf engine used to create the new netcdf file.
"
),
choices
=
(
"
h5netcdf
"
,
"
netcdf4
"
),
default
=
"
h5
netcdf
"
,
default
=
"
netcdf
4
"
,
type
=
str
,
)
parser
.
add_argument
(
Loading