Skip to content
Snippets Groups Projects
Commit 85a12387 authored by Oriol Tintó's avatar Oriol Tintó
Browse files

Adding lossless defaults.

parent 2f9ae26e
No related branches found
No related tags found
1 merge request!6Get rid of Enums and use a dictionary to define available lossy compressors,...
"""
Different rules to format the compression specification string.
Different rules to format the compression specification string as well as some default values.
"""
# Separator between two variable entries
......@@ -11,11 +11,14 @@ VARIABLE_NAME_SEPARATOR = ":"
# Separator between the compression type, the compressor, the mode and the parameter
COMPRESSION_SPECIFICATION_SEPARATOR = ","
# Default Label
# Default Labels
DATA_DEFAULT_LABEL = "default"
COORD_LABEL = "coordinates"
# Default values
# Default Values
DATA_DEFAULT_VALUE = "lossless"
COORD_DEFAULT_VALUE = "lossless"
# Lossless defaults
LOSSLESS_DEFAULT_BACKEND = "lz4"
LOSSLESS_DEFAULT_COMPRESSION_LEVEL = 5
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment