Advertisement
peth31

Frente Frío

Sep 10th, 2019
142
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Python 0.34 KB | None | 0 0
  1. from netCDF4 import Dataset
  2. import matplotlib.pyplot as plt
  3. import numpy as np
  4. from mpl_toolkits.basemap import Basemap
  5.  
  6. nc = Dataset('ff_8ene10.nc')
  7. nc.variables.keys()
  8.  
  9. lat = nc.variables['latitude'][:]
  10. lon = nc.variables['longitude'][:]
  11. levels = nc.variables['level'][:]
  12. t = nc.variables['t'][:]
  13. cc = nc.variables['cc'][:]
  14.  
  15. cc.shape
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement