Changeset 1217 in lmdz_wrf for trunk/tools
- Timestamp:
- Oct 20, 2016, 11:51:21 AM (8 years ago)
- Location:
- trunk/tools
- Files:
-
- 6 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/tools/drawing.py
r1215 r1217 1 # Python to manage plot data in netCDF files. 2 # From L. Fita work in different places: LMD (France) 3 # More information at: http://www.lluÃsfb.cat/python/PyNCplot 4 # 5 # pyNCplot and its component drawing.py comes with ABSOLUTELY NO WARRANTY. 6 # This work is licendes under a Creative Commons 7 # Attribution-ShareAlike 4.0 International License (http://creativecommons.org/licenses/by-sa/4.0) 8 # 1 9 import numpy as np 2 10 import os -
trunk/tools/drawing_tools.py
r1204 r1217 1 1 # -*- coding: iso-8859-15 -*- 2 # Python tools to plot netCDF files. 3 # From L. Fita work in different places: LMD (France) 4 # More information at: http://www.lluÃsfb.cat/python/PyNCplot 5 # 6 # pyNCplot and its component drawing_tools.py comes with ABSOLUTELY NO WARRANTY. 7 # This work is licendes under a Creative Commons 8 # Attribution-ShareAlike 4.0 International License (http://creativecommons.org/licenses/by-sa/4.0) 9 # 10 2 11 #import pylab as plt 3 12 # From http://stackoverflow.com/questions/13336823/matplotlib-python-error -
trunk/tools/generic.py
r892 r1217 1 1 # Wrapper for the generic functions written in python from 'generic_tools.py' 2 2 # L. Fita, LMD. June 2016 3 # Python to manage netCDF files. 4 # From L. Fita work in different places: LMD (France) 5 # More information at: http://www.lluÃsfb.cat/python/PyNCplot 6 # 7 # pyNCplot and its component generic.py comes with ABSOLUTELY NO WARRANTY. 8 # This work is licendes under a Creative Commons 9 # Attribution-ShareAlike 4.0 International License (http://creativecommons.org/licenses/by-sa/4.0) 10 # 3 11 4 12 from optparse import OptionParser -
trunk/tools/generic_tools.py
r1201 r1217 1 1 # -*- coding: iso-8859-15 -*- 2 # Python tools 3 # From L. Fita work in different places: CCRC (Australia), LMD (France) 4 # More information at: http://www.lluÃsfb.cat/python/PyNCplot 5 # 6 # pyNCplot and its component generic_tools.py comes with ABSOLUTELY NO WARRANTY. 7 # This work is licendes under a Creative Commons 8 # Attribution-ShareAlike 4.0 International License (http://creativecommons.org/licenses/by-sa/4.0) 9 # 10 2 11 import numpy as np 3 12 from netCDF4 import Dataset as NetCDFFile -
trunk/tools/nc_var.py
r1215 r1217 1 1 #!/usr/bin/python 2 # Python to manage netCDF files. 3 # From L. Fita work in different places: CCRC (Australia), LMD (France) 4 # More information at: http://www.lluÃsfb.cat/python/PyNCplot 5 # 6 # pyNCplot and its component nc_var.py comes with ABSOLUTELY NO WARRANTY. 7 # This work is licendes under a Creative Commons 8 # Attribution-ShareAlike 4.0 International License (http://creativecommons.org/licenses/by-sa/4.0) 9 # 10 2 11 ## e.g. ccrc468-17 # ./nc_var.py -v time -f 123/CCRC_NARCliM_Sydney_All_1990-1999_pr10max.nc -o out -S 1:-1 3 12 ## e.g. ccrc468-17 # ./nc_var.py -v prac -f xyz/CCRC_NARCliM_Sydney_DAM_1990-1999_prac.nc -o mname -S pluja -
trunk/tools/nc_var_tools.py
r1185 r1217 1 # Python tools to manage netCDF files. 2 # From L. Fita work in different places: CCRC (Australia), LMD (France) 3 # More information at: http://www.lluÃsfb.cat/python/PyNCplot 4 # 5 # pyNCplot and its component nc_var_tools.py comes with ABSOLUTELY NO WARRANTY. 6 # This work is licendes under a Creative Commons 7 # Attribution-ShareAlike 4.0 International License (http://creativecommons.org/licenses/by-sa/4.0) 8 # 9 1 10 import numpy as np 2 11 from netCDF4 import Dataset as NetCDFFile
Note: See TracChangeset
for help on using the changeset viewer.