Metadata-Version: 2.1
Name: dynamicopy
Version: 0.3.4.2
Summary: A set of tool to use and analyse netCDF data
Home-page: UNKNOWN
Author: Stella Bourdin
Author-email: stella.bourdin@lsce.ipsl.fr
License: UNKNOWN
Platform: UNKNOWN
Classifier: Development Status :: 3 - Alpha
Classifier: Programming Language :: Python :: 3
Classifier: License :: OSI Approved :: GNU General Public License v3 (GPLv3)
Classifier: Operating System :: OS Independent
Requires-Python: >=3.6
Description-Content-Type: text/markdown
License-File: LICENSE

# DynamicoPy

This is a package designed to ease your analysis of climate models data with netCDF file. 

You can install this package with pip : `pip install dynamicopy`
PyPI release here : https://pypi.org/project/dynamicopy/ 

How to use the package ? 
Imagine you have a u.nc netCDF4 file. 

1 / Load the data
`u = var_load('u', 'u.nc')`

2 / Load its coordinates
`lon, lat = get_lon_lat('u.nc')`

3 / Plot it on a map
`lon_lat_plot_map(lon, lat, u)`

