Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Updates README with a specific example and adds setuptools #13

Open
wants to merge 1 commit into
base: main
Choose a base branch
from
Open
Show file tree
Hide file tree
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
13 changes: 13 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -40,6 +40,19 @@ Usage:
python bufrtools/encoding/wildlife_computers.py -o <output bufr file> <netCDF path>
```

Example to produce bufr message for the netCDF file in the examples folder:
```
python bufrtools/encoding/wildlife_computers.py -o examples/profile-example.bufr examples/profile.nc
```

We can see that the file is a BUFR file by inspecting the first 4 bytes:

```
hexdump -C -n4 examples/output.bufr
00000000 42 55 46 52 |BUFR|
00000004
```

The following table contains the expanded sequence of descriptors for temperature salinity profiles and trajectories originating from marine animal tags.

The source of this information is the published [Manual on WMO Codes](https://library.wmo.int/doc_num.php?explnum_id=10722).
Expand Down
1 change: 1 addition & 0 deletions environment.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,3 +9,4 @@ dependencies:
- pandas
- pocean-core>=1.9.3
- pyarrow
- setuptools
Loading