-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathload_netCDF4_simple.py
30 lines (27 loc) · 1.3 KB
/
load_netCDF4_simple.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
# -*- coding: utf-8 -*-
"""
load_netcdf_simple.py: an example on loading data from a netCDF file. Only
the most commonly-performed operations are covered in this file. For a more
extensive set of operations, see load_netcdf_full.py.
This code is released into the public domain. For full details, see
UNLICENSE at the root of this project. In essence, you can copy and use this
code for whatever purpose, with or without attribution.
If you have any questions about the code or could use any sort of help using
it, feel free to e-mail me at mcgibbon (at) uw {dot} edu.
"""
# we will be using the netCDF4 library
import netCDF4 as nc4
# This 'if' statement should always be put at the start of your
# 'script' section after any function or class definitions, or global
# variables.
if __name__ == '__main__':
# netCDF4 Dataset objects are by default opened in read-only mode
# put the filename you would like to load as the first argument
dataset = nc4.Dataset('../../sample_data/ARM_sounding_example.nc')
# data is stored in the dataset.variables dictionary
# its keys are variable names, and values are Variable objects
p = dataset.variables['pres']
T = dataset.variables['tdry']
# Datasets will be closed at the end of your script, but can also be
# closed manually.
dataset.close()