Skip to content

zswimau/OzFluxQC

 
 

Repository files navigation

OzFluxQC

Welcome to the repository for the OzFluxQC code.

OzFluxQC is a suite of Python scripts integrated into a single GUI that is designed to simplify and standardise the quality control, post-processing, gap filling and partitioning of data from flux towers. OzFluxQC has been developed by the OzFlux (http://ozflux.org.au) community in Australia and is used by the community as the operational tool for processing data from the OzFlux network of flux towers. OzFluxQC is not limited to Australia and can be used for flux tower data collected anywhere in the world. Using OzFluxQC does not require any knowledge of Python (though we would always recommend people learn Python anyway!), all aspects of the processing can be controlled via the simple GUI and by editing text files. OzFluxQC can read data from Excel workbooks and CSV files and uses netCDF files (http://www.unidata.ucar.edu/software/netcdf/) for storing intermediate and final output data.

The following documentation gives basic information on how to install and use OzFluxQC.

#Installation and Updating There are 3 steps to installing OzFluxQC:

    1. Install Python.
    1. Install the "git" version control software.
    1. Clone the OzFluxQC repository using the "git" version control software.

##Installing Python OzFluxQC is written for Python V2.7 and uses a number of standard and 3rd party Python modules.

OzFlux uses and recommends the Anaconda (https://www.continuum.io/) Python V2.7 distribution. This Python distribution comes with all of the modules used by OzFluxQC and all except 1 are installed by default. Adding the 1 required module that is not installed by default is very easy, thanks to the conda package manager, and is explained below. Using the Anaconda distribution is not essential, just very convenient, and it is possible to use any Python V2.7 environment provided the required modules are installed. There is a list of the required modules in the /docs folder of this repository.

To install the Anaconda Python V2.7 distribution, follow these steps:

    1. Download the Anaconda Python V2.7 installer for your operating system from https://www.continuum.io/downloads.
    1. Follow the instructions on the Anaconda web page to install the Anaconda Python V2.7 distribution.
    1. Accept all the defaults during the installation, including having Anaconda append the path to this Python installation to your system PATH environment variable.
    1. The default installation provides everything needed to run OzFluxQC with 1 exception, the module required to read and write netCDF files. This can be installed as follows:
    2. Open a command line window or terminal session.
    3. At the command prompt, type "conda install netcdf4" and follow the instructions. Accept all of the defaults and the netCDF module will be installed.

At the end of this process, you should have a functioning installation of the Python language interpeter.

##Installing "git" The version control program "git" provides a convenient way to install OzFluxQC and to update OzFluxQC once it has been installed.

To install "git", follow these steps:

    1. Download the "git" installer for your operating system from https://git-scm.com/downloads.
    1. Follow the instructions on the "git" web page to install the "git" version control software.
    1. Accept all the defaults during the installation.

##Installing OzFluxQC OzFluxQC is easily installed using the "git" version control software. This process is refered to as "cloning" the OzFluxQC repository (this web page). When OzFluxQC is installed using "git" then "git" can also be used to easily update OzFluxQC to make sure you are always using the most recent version. This is a good idea because OzFluxQC is frequently updated to fix bugs and add new features.

To install OzFluxQC, follow these steps:

    1. Open a command line window or terminal session and use the "cd" (shorthand for "change directory") command to navigate to the directory into which you want to install OzFluxQC. Note that the installation process will create a subdirectory called OzFluxQC in the directory from which the install is run.
    1. Clone the OzFluxQC repository by typing "git clone https://github.com/OzFlux/OzFluxQC.git" at the command prompt.
    1. OzFluxQC is now ready to use.

##Updating OzFluxQC OzFluxQC is still being actively developed and there are frequent changes to fix bugs and add new features. It is always a good idea to update your installation to the latest version every few days. Updating OzFluxQC is easy when the installation was done using the "git" version control software.

To update an OzFluxQC installation done by "git", follow these steps:

    1. Open a command line window or terminal session and use the "cd" command to navigate to the OzFluxQC directory created during the installation step above. Note that while the install is done from the directory one level above the OzFluxQC directory, the update is done from the OzFluxQC directory.
    1. Type "git pull origin master" at the command prompt in the OzFluxQC directory. This will update the OzFluxQC installation.

#Running OzFluxQC The simplest way to run OzFluxQC is from the command line.

To run OzFluxQC, follow these steps:

    1. Open a command line window or terminal session and use the "cd" command to navigate to the OzFluxQC directory.
    1. Type "python OzFluxQC.py" at the command prompt in the OzFluxQC directory.
    1. After a short time, the OzFluixQC GUI will appear. This can take a couple of minutes when the program is run for the first time.

#Using OzFluxQC Coming to the Wiki soon ...

About

Repository for the OzFluxQC code

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages

  • Python 87.6%
  • C++ 9.6%
  • C 2.2%
  • Other 0.6%