{
"info": {
"author": "Jonas Gliss",
"author_email": "jonas.gliss@met.no",
"bugtrack_url": null,
"classifiers": [
"Development Status :: 3 - Alpha",
"Intended Audience :: Education",
"Intended Audience :: Science/Research",
"License :: OSI Approved :: BSD License",
"Programming Language :: Python :: 3.6"
],
"description": "NEWS\n====\n\n- **October 2019**: Release of version 0.8.0 (available via *conda-forge* and *PyPi*)\n- **April 2019**: AeroCom has a new web : We are happy to announce that pyaerocom is now used for the processing of the recent and upcoming AeroCom experiments (in parallel with the IDL processing displayed in the Phase 2 interface). The new online interface can be found at: `https://aerocom-evaluation.met.no `__.\n\nAbout\n=====\n\npyaerocom is written and tested for Python >= 3.6 and for unix based systems. pyaerocom provides tools for processing and plotting of data related to the AeroCom project.\n\nThis includes reading and processing of gridded data (e.g. model data or level 3 satellite data, e.g. NetCDF files) and ungridded data (e.g. observational data from `AERONET `__ or `EBAS `__ networks, e.g. ASCII files) as well as tools for colocation and cross evaluation of different datasets.\n\nMain features\n^^^^^^^^^^^^^\n\n- Reading routines for many ground based observation databases, such as:\n\n\t- `AERONET `_ Sun, SDA and Inversion products.\n\t- `EBAS database `__.\n\t- `EARLINET Lidar network `__.\n\t- Coming soon: `AirBase `__ database.\n\n- Reading routines for many space-based observations, such as:\n\n\t- `MODIS Aerosol Product `__ (gridded).\n\t- `CALIPSO CALIOP `__ Lidar observations (gridded).\n\t- `ENVISAT AATSR `__.\n\t- Coming soon: Support for `Sentinel-5P `__ and `aeolus `__ data.\n\n- Access to the AeroCom model database.\n- Data objects for analysis of gridded and ungridded (point-cloud) observations.\n- This includes interfaces for conversion of data to data types of related data analysis libraries such as `pandas `__, `numpy `__, `xarray `__ or `iris `__.\n- Colocation tools for gridded and ungridded datasets.\n- Harmonisation of variable and metadata conventions.\n- Data visualisation tools and interfaces to common plotting libraries such as `matplotlib `__ or `cartopy `__.\n- Tools for statistical analysis.\n\nUsage examples\n^^^^^^^^^^^^^^\n\n- Processing of data for the new AeroCom `Model Evaluation interface `__\n- Processing and harmonisation of observations for `Aerosol Trends interface `__.\n\n\nAeroCom\n=======\n\nThe AeroCom-project (http://aerocom.met.no/) is an open international initiative of scientists interested in the advancement of the understanding of the global aerosol and its impact on climate. A large number of observations (including MODIS, POLDER, MISR, AVHHR, SEAWIFS, TOMS, AATSR, AERONET and surface concentrations) and results from more than 14 global models have been assembled to document and compare state of the art modeling of the global aerosol. A common protocol has been established and models are asked to make use of the AeroCom emission inventories for the year 2000 and preindustrial times. Results are documented via interactive websites which give access to 2D fields and standard comparisons to observations. Regular workshops are held to discuss findings and future directions.\n\nThis repository contains the AeroCom python tools which are / will be used to produce the standard AeroCom analyses shown at the AeroCom phase 2 interface (http://aerocom.met.no/cgi-bin/AeroCom/aerocom/surfobs_annualrs.pl)\n\nAt this point the tools are co-operational together with the IDL based aerocom-tools that cannot be made public because they use 3rd party libraries with a non GPL compatible license.\n\nWebsite and code documentation\n==============================\n\nThe official website including code documentation is hosted here:\n\nhttp://aerocom.met.no/pyaerocom\n\nRequirements\n============\n\nA list of all requirements is provided in file `pyaerocom_env.yml `__.\n\nInstalling all requirements\n^^^^^^^^^^^^^^^^^^^^^^^^^^^^\n\n**NOTE:** You can skip this section if you install the latest *conda-forge* release (more infos below under *Installation*).\n\nWe recommend using the `Anaconda `_ Python 3.7 distribution (or `Miniconda `__, if you want to save disk space) and to use the *conda* package manager to install the requirements.\n\nIf you use Anaconda as a package manager, you can install all requirements (specified in previous section) into a new environment using the provided *pyaerocom_env.yml* file::\n\n\tconda env create -n pya -f pyaerocom_env.yml\n\nThis will create a new conda environment called *pya* which can be activated using::\n\n\tconda activate pya\n\nAlternatively, you can include the requirements into an existing environment. First, activate the existing environment, and then install the dependencies using::\n\n\tconda env update -f=pyaerocom_env.yml\n\nInstallation of pyaerocom\n=========================\n\nYou have several options to install pyaerocom, the first one is the easiest, but may not refer to the most recent (non-released) version of pyaerocom. So please check first, which version you are interested in.\n\nOption 1: Installation using conda install\n^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^\n\n**NOTE:** This will install the latest release of pyaerocom.\n\n- It hence, may not include the most recent developments.\n- Requirements are installed automatically.\n\nIf you use *conda* as a package manager, the easiest way to install pyaerocom (and all requirements, see previous section) is to use the build provided in the *nordicesmhub* conda channel::\n\n\tconda install -c conda-forge pyaerocom\n\nThis will install the latest release of pyaerocom including all requirements. Alternatively, you may install from source as described in the following.\n\n**NOTE**: installation support via conda as described above is quite recent, so please let us know if you run into problems with the installation (best way to do this is by raising an issue `here `__).\n\nOption 2: Install latest release via PyPi\n^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^\n\n**NOTE:** this will install the latest released version of pyaerocom, which is the same as distributed via *conda-forge* (see prev. point). However, installation via PyPi does **not** take care of any requirements but only installs pyaerocom::\n\n\tpip install pyaerocom\n\n\nOption 3: Installing from source\n^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^\n\nIf you use the *conda* packages manager, please make sure to `activate the environment `__ you want to install pyaerocom into. For more information about conda environments, `see here `__.\n\nPlease make sure to install all requirements (see above) before installing pyaerocom from source.\n\nTo install pyaerocom from source, please download and extract the `latest release `__ (or clone this repository) and install from the toplevel directory (that contains a file *setup.py*) using::\n\n\tpython setup.py install\n\nAlternatively, if you plan to apply local changes to the pyaerocom source code, you may install in development mode::\n\n\tpython setup.py develop\n\nYou may also download and extract (or clone) the `GitHub repo `__ to install the very latest (not yet released) version of pyaerocom.\n\n\nAccess to users database\n========================\n\nPlease follow the instructions provided here, to retrieve access to the AeroCom users database:\n\nhttps://wiki.met.no/aerocom/data_retrieval\n\n**NOTE**: the users database does not contain any ground based observational data (such as EBAS, AERONET, etc.) but only the AeroCom model data available in the database as well as some gridded level 3 satellite datasets which may be used for model evaluation.\n\nGetting started\n===============\n\nAfter installing pyaerocom, open your python executable and try to import pyaerocom::\n\n\timport pyaerocom as pya\n\nTo get started, please see `introduction tutorial `__.\n\nTutorials (Jupyter notebooks)\n^^^^^^^^^^^^^^^^^^^^^^^^^^^^^\n\nA number of tutorial jupyter notebooks can be found in the `pyaerocom-tutorials repo `__\n\n**NOTE:** in order to execute these notebooks you need to be connected to the AeroCom database located on servers of the Norwegian Meteorological Institute (MetNo). Thus, if you are not happen to be an employee of the institute you will not be able to execute the tutorial notebooks on your own machine. We are working on providing an example dataset that can be downloaded and rewrite the notebooks based on these example data.\n\n\nRemark for Windows users\n^^^^^^^^^^^^^^^^^^^^^^^^\n\npyaerocom is not tested on Windows systems and may only work in parts and thus some features may not work on Windows machines at the moment. In particular, features that rely on and are built upon access to the AeroCom database servers and automatic database path navigation. This includes the automised reading of gridded and ungridded data using either of the pre-defined path infrastuctures (e.g. check out `paths.ini `__ or `paths_user_server.ini `__).\nHowever, you may still define file locations in your Python scripts yourself and use the more low-level features for reading the data. Windows support will be provided soon. Please let us know if you intend to use pyaerocom on a Windows machine so that we can consider adjusting our priorities, or also if you have any questions related to the usage.\n\n\n",
"description_content_type": "",
"docs_url": null,
"download_url": "",
"downloads": {
"last_day": -1,
"last_month": -1,
"last_week": -1
},
"home_page": "https://github.com/jgliss/pyaerocom.git",
"keywords": "",
"license": "GPLv3",
"maintainer": "",
"maintainer_email": "",
"name": "pyaerocom",
"package_url": "https://pypi.org/project/pyaerocom/",
"platform": "",
"project_url": "https://pypi.org/project/pyaerocom/",
"project_urls": {
"Homepage": "https://github.com/jgliss/pyaerocom.git"
},
"release_url": "https://pypi.org/project/pyaerocom/0.8.0/",
"requires_dist": null,
"requires_python": "",
"summary": "Python tools for the Aerocom project",
"version": "0.8.0"
},
"last_serial": 5964481,
"releases": {
"0.8.0": [
{
"comment_text": "",
"digests": {
"md5": "97da0dc675a6beab2b7509f7ca3dea57",
"sha256": "e80605ca0d8ffa1dc3d8985d1072ead2ce7b47e4ac1133808b91599f62df06c3"
},
"downloads": -1,
"filename": "pyaerocom-0.8.0-py3-none-any.whl",
"has_sig": false,
"md5_digest": "97da0dc675a6beab2b7509f7ca3dea57",
"packagetype": "bdist_wheel",
"python_version": "py3",
"requires_python": null,
"size": 657306,
"upload_time": "2019-10-12T14:30:36",
"url": "https://files.pythonhosted.org/packages/a5/5d/c14a4cb0232cd5442e112ae3d6ed9f8b2d3996e3cc060705619a3f42cee3/pyaerocom-0.8.0-py3-none-any.whl"
},
{
"comment_text": "",
"digests": {
"md5": "782ea3c54c224bfd1ae6225298748ac2",
"sha256": "694ef61878d600e4a05e66d13e4d1493e5156012376b6dac780c72781e47a873"
},
"downloads": -1,
"filename": "pyaerocom-0.8.0.tar.gz",
"has_sig": false,
"md5_digest": "782ea3c54c224bfd1ae6225298748ac2",
"packagetype": "sdist",
"python_version": "source",
"requires_python": null,
"size": 584172,
"upload_time": "2019-10-12T14:30:40",
"url": "https://files.pythonhosted.org/packages/1a/0b/029a942d547f457a07c8d9e55654edabf1faeecddd72f9f0553d0de32cf1/pyaerocom-0.8.0.tar.gz"
}
],
"0.8.0rc1": [
{
"comment_text": "",
"digests": {
"md5": "b26cf66826f5a286f464c7606e00942f",
"sha256": "bbec5f039fa5d9bd8091c25c7e0daf3db79cbed2a88f7b6c1aaf9e6ecdacbb25"
},
"downloads": -1,
"filename": "pyaerocom-0.8.0rc1-py3-none-any.whl",
"has_sig": false,
"md5_digest": "b26cf66826f5a286f464c7606e00942f",
"packagetype": "bdist_wheel",
"python_version": "py3",
"requires_python": null,
"size": 611064,
"upload_time": "2019-10-07T08:40:24",
"url": "https://files.pythonhosted.org/packages/5b/fc/0dd26435e845fad516073a4fae64289569b1a866611bcff6b55bf6362146/pyaerocom-0.8.0rc1-py3-none-any.whl"
},
{
"comment_text": "",
"digests": {
"md5": "994b65e9169c1be73d073cbef6bb001f",
"sha256": "8fcf2cf511cc11b3ff4bee81d742a0c8d67c8e5617590be844fbfbe769193a05"
},
"downloads": -1,
"filename": "pyaerocom-0.8.0rc1.tar.gz",
"has_sig": false,
"md5_digest": "994b65e9169c1be73d073cbef6bb001f",
"packagetype": "sdist",
"python_version": "source",
"requires_python": null,
"size": 549932,
"upload_time": "2019-10-07T08:40:29",
"url": "https://files.pythonhosted.org/packages/06/6a/850abc9e6310139b656da4640fb814381460b3e838fcc35cca19440c2147/pyaerocom-0.8.0rc1.tar.gz"
}
],
"0.8.0rc2": [
{
"comment_text": "",
"digests": {
"md5": "45bc243edc0397d04cc552612daa6ce1",
"sha256": "397e2b2f9999f012023c645ab1094cafb1d326240b4ff9808c353ca1f91d8f82"
},
"downloads": -1,
"filename": "pyaerocom-0.8.0rc2-py3-none-any.whl",
"has_sig": false,
"md5_digest": "45bc243edc0397d04cc552612daa6ce1",
"packagetype": "bdist_wheel",
"python_version": "py3",
"requires_python": null,
"size": 656728,
"upload_time": "2019-10-09T11:45:08",
"url": "https://files.pythonhosted.org/packages/21/aa/a4154b11feea24661cb041802405e87df9fd12ff9b327bb8a288b54d17ff/pyaerocom-0.8.0rc2-py3-none-any.whl"
},
{
"comment_text": "",
"digests": {
"md5": "87abd7ba578c1be9af2c3f67b83bbb81",
"sha256": "7822c778fb598e99a5e797751a49508385cda9c13c9b436c7a198280f550dbb0"
},
"downloads": -1,
"filename": "pyaerocom-0.8.0rc2.tar.gz",
"has_sig": false,
"md5_digest": "87abd7ba578c1be9af2c3f67b83bbb81",
"packagetype": "sdist",
"python_version": "source",
"requires_python": null,
"size": 585005,
"upload_time": "2019-10-09T11:45:12",
"url": "https://files.pythonhosted.org/packages/57/c4/ab9245db610202641225bcee044a6e4a2e73b4623e21f95a99ac2d57983f/pyaerocom-0.8.0rc2.tar.gz"
}
],
"0.8.0rc3": [
{
"comment_text": "",
"digests": {
"md5": "08dbe1dba4c16af7706bfaf153f197a2",
"sha256": "731337d47df33fb4d923b97d8df660dade669218e53d08cdc7eefedecae87cd3"
},
"downloads": -1,
"filename": "pyaerocom-0.8.0rc3-py3-none-any.whl",
"has_sig": false,
"md5_digest": "08dbe1dba4c16af7706bfaf153f197a2",
"packagetype": "bdist_wheel",
"python_version": "py3",
"requires_python": null,
"size": 657110,
"upload_time": "2019-10-10T15:44:46",
"url": "https://files.pythonhosted.org/packages/ab/d4/283972723b15c1a6520a6ced9c67927ed88e8794cad51ad668756281d099/pyaerocom-0.8.0rc3-py3-none-any.whl"
},
{
"comment_text": "",
"digests": {
"md5": "46e72c14d78d3d5b30a27407d5864764",
"sha256": "84460fac9b4b1518edd3b8c160b2045e566cb0e993fe5ca556215faa0e91c0ba"
},
"downloads": -1,
"filename": "pyaerocom-0.8.0rc3.tar.gz",
"has_sig": false,
"md5_digest": "46e72c14d78d3d5b30a27407d5864764",
"packagetype": "sdist",
"python_version": "source",
"requires_python": null,
"size": 585557,
"upload_time": "2019-10-10T15:44:49",
"url": "https://files.pythonhosted.org/packages/46/c4/429c8a5ee1a56209846cea38b4209b6be3f111da64134b675e154930db96/pyaerocom-0.8.0rc3.tar.gz"
}
],
"0.8.0rc4": [
{
"comment_text": "",
"digests": {
"md5": "3cd576f6d790caff8b8c5fc1ca51488d",
"sha256": "37246e460b0f6187d37d8490aa1a2b7d0270d90c42a37b5f8dd3b668484ce789"
},
"downloads": -1,
"filename": "pyaerocom-0.8.0rc4-py3-none-any.whl",
"has_sig": false,
"md5_digest": "3cd576f6d790caff8b8c5fc1ca51488d",
"packagetype": "bdist_wheel",
"python_version": "py3",
"requires_python": null,
"size": 657098,
"upload_time": "2019-10-11T09:47:31",
"url": "https://files.pythonhosted.org/packages/32/9d/9cf4c441265fccb1e03384e4386d61383e58ff975ba064d0a38a2750443c/pyaerocom-0.8.0rc4-py3-none-any.whl"
},
{
"comment_text": "",
"digests": {
"md5": "918d0d08a02a67d731d130c08c1b245d",
"sha256": "9d15510b15967323e7450db7693acb630dc2b15fe186a06811a79f8d0cfc850b"
},
"downloads": -1,
"filename": "pyaerocom-0.8.0rc4.tar.gz",
"has_sig": false,
"md5_digest": "918d0d08a02a67d731d130c08c1b245d",
"packagetype": "sdist",
"python_version": "source",
"requires_python": null,
"size": 583915,
"upload_time": "2019-10-11T09:47:36",
"url": "https://files.pythonhosted.org/packages/ed/e7/7e59acc7dc8b0047421d7c2ce0ac307cf7418ab860ae49c0e2759b0c3f70/pyaerocom-0.8.0rc4.tar.gz"
}
]
},
"urls": [
{
"comment_text": "",
"digests": {
"md5": "97da0dc675a6beab2b7509f7ca3dea57",
"sha256": "e80605ca0d8ffa1dc3d8985d1072ead2ce7b47e4ac1133808b91599f62df06c3"
},
"downloads": -1,
"filename": "pyaerocom-0.8.0-py3-none-any.whl",
"has_sig": false,
"md5_digest": "97da0dc675a6beab2b7509f7ca3dea57",
"packagetype": "bdist_wheel",
"python_version": "py3",
"requires_python": null,
"size": 657306,
"upload_time": "2019-10-12T14:30:36",
"url": "https://files.pythonhosted.org/packages/a5/5d/c14a4cb0232cd5442e112ae3d6ed9f8b2d3996e3cc060705619a3f42cee3/pyaerocom-0.8.0-py3-none-any.whl"
},
{
"comment_text": "",
"digests": {
"md5": "782ea3c54c224bfd1ae6225298748ac2",
"sha256": "694ef61878d600e4a05e66d13e4d1493e5156012376b6dac780c72781e47a873"
},
"downloads": -1,
"filename": "pyaerocom-0.8.0.tar.gz",
"has_sig": false,
"md5_digest": "782ea3c54c224bfd1ae6225298748ac2",
"packagetype": "sdist",
"python_version": "source",
"requires_python": null,
"size": 584172,
"upload_time": "2019-10-12T14:30:40",
"url": "https://files.pythonhosted.org/packages/1a/0b/029a942d547f457a07c8d9e55654edabf1faeecddd72f9f0553d0de32cf1/pyaerocom-0.8.0.tar.gz"
}
]
}