NETCDF sample file
netcdf_hdf5_compat_sample.nc
839.4 KB
application/x-netcdf
SHA256 verified
File details
Filename
netcdf_hdf5_compat_sample.ncSize839.4 KB (859591 bytes)
MIME type
application/x-netcdfExtension
.ncSHA256
8322085eea5ef628532050d90954fba0504c17a6454cc92e294e2aa97822854aDownload commands
Use in scripts and tests
curl -L -o netcdf_hdf5_compat_sample.nc \
https://samplefile.com/samples/download/data/netcdf/netcdf_hdf5_compat_sample.nc/
wget -O netcdf_hdf5_compat_sample.nc \
https://samplefile.com/samples/download/data/netcdf/netcdf_hdf5_compat_sample.nc/
import requests
url = "https://samplefile.com/samples/download/data/netcdf/netcdf_hdf5_compat_sample.nc/"
resp = requests.get(url)
with open("netcdf_hdf5_compat_sample.nc", "wb") as f:
f.write(resp.content)
const resp = await fetch("https://samplefile.com/samples/download/data/netcdf/netcdf_hdf5_compat_sample.nc/");
const buf = Buffer.from(await resp.arrayBuffer());
require("fs").writeFileSync("netcdf_hdf5_compat_sample.nc", buf);
# Download and verify SHA256
curl -L -o netcdf_hdf5_compat_sample.nc https://samplefile.com/samples/download/data/netcdf/netcdf_hdf5_compat_sample.nc/
echo "8322085eea5ef628532050d90954fba0504c17a6454cc92e294e2aa97822854a netcdf_hdf5_compat_sample.nc" | shasum -a 256 -c
# Python
import hashlib, requests
data = requests.get("https://samplefile.com/samples/download/data/netcdf/netcdf_hdf5_compat_sample.nc/").content
assert hashlib.sha256(data).hexdigest() == "8322085eea5ef628532050d90954fba0504c17a6454cc92e294e2aa97822854a"
More NETCDF files
Other NETCDF Sample Files
| Filename | Size | SHA256 | Download |
|---|---|---|---|
netcdf_small_grid_alt_sample.nc |
6.1 KB | 7dc0b6939bb6c1af… |
Download |
netcdf_small_grid_sample.nc |
6.1 KB | 7379cd2dce205f9d… |
Download |