Changeset 1217 in lmdz_wrf for trunk/tools


Ignore:
Timestamp:
Oct 20, 2016, 11:51:21 AM (8 years ago)
Author:
lfita
Message:

Adding licence and warranty

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#
    19import numpy as np
    210import os
  • trunk/tools/drawing_tools.py

    r1204 r1217  
    11# -*- 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
    211#import pylab as plt
    312# From http://stackoverflow.com/questions/13336823/matplotlib-python-error
  • trunk/tools/generic.py

    r892 r1217  
    11# Wrapper for the generic functions written in python from 'generic_tools.py'
    22# 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#
    311
    412from optparse import OptionParser
  • trunk/tools/generic_tools.py

    r1201 r1217  
    11# -*- 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
    211import numpy as np
    312from netCDF4 import Dataset as NetCDFFile
  • trunk/tools/nc_var.py

    r1215 r1217  
    11#!/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
    211## e.g. ccrc468-17 # ./nc_var.py -v time -f 123/CCRC_NARCliM_Sydney_All_1990-1999_pr10max.nc -o out -S 1:-1
    312## 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
    110import numpy as np
    211from netCDF4 import Dataset as NetCDFFile
Note: See TracChangeset for help on using the changeset viewer.