Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion Readme.md
Original file line number Diff line number Diff line change
Expand Up @@ -265,7 +265,7 @@
return data as ArrayUByte.
* Netcdf-4 encodes CHAR values as HDF5 string type with elemSize = 1, so we use that convention to detect
legacy CHAR variables in HDF5 format. (NC_CHAR should not be used in new Netcdf-4 files, use NC_UBYTE or NC_STRING.)
Variables of type CHAR return data as STRING, since users can use UBYTE if thats what they intend.

Check failure on line 268 in Readme.md

View workflow job for this annotation

GitHub Actions / Check for spelling errors

thats ==> that's
* Netcdf-4/HDF5 String variables may be fixed or variable length. For fixed Strings, we set the size of Datatype.STRING to
the fixed size. For both fixed and variable length Strings, the string will be truncated at the first zero byte, if any.
* HDF4 does not have a STRING type, but does have signed and unsigned CHAR, and signed and unsigned BYTE.
Expand Down Expand Up @@ -318,12 +318,12 @@
1. If a group or variable has an attribute with name "_NCProperties", "_Netcdf4Coordinates", "_Netcdf4Dimid" or "_nc3_strict".
2. If a variable name starts with "_nc4_non_coord_".
3. If a variable has an attrinute named "DIMENSION_LIST with type vlen of reference.
4. If a dimenson name starts with "This is a netCDF dimension but not a netCDF variable"

Check failure on line 321 in Readme.md

View workflow job for this annotation

GitHub Actions / Check for spelling errors

dimenson ==> dimension

Other than trying to identify which library wrote the file, Netchdf does not do any special processing for Netcdf4 files,
except:

1. When testing, use the Netcdf4 C library when comparing data and metadata.
1. When testing, use the Netcdf4 C library when comparing data and metadata.

## Elevator blurb

Expand Down