Mirror of Unidata's AWIPS2.
Find a file
Tiffany Meyer 0684b85e34 Minor updates to awips_install.sh
-Added hour:minute:second to the backup so it doesn't get overwritten if you install on the same day
-Added awips2-qpid-lib to the list of rpms to remove since sometimes it doesn't get removed by default
2021-06-14 16:56:39 -04:00
.github/workflows Update deploy_docs.yml 2020-09-02 13:18:32 -06:00
build Added in to rsync the new rpms to robin with a -YYYYMMDD tag 2021-06-08 10:09:25 -04:00
cave One more change to remove NCP from the perspective list when creating RPM's - had to be removed from the awips.product file 2021-06-08 10:01:02 -04:00
dist Added awips2-edex-probsevere to the comps.xml repos 2021-05-17 21:51:10 -04:00
docs Merge branch 'unidata_18.1.1' into unidata_18.2.1 2021-04-20 15:06:00 -06:00
edexOsgi Minor case change for the location of a satellite colormap 2021-06-14 16:46:05 -04:00
javaUtilities gfe, fxa, ufpy, msas cleanup 2018-12-26 13:50:30 -07:00
localization Updated radarsInUse.txt for OAX to include more radars 2021-06-04 16:30:07 -04:00
pythonPackages/pypies gfe, fxa, ufpy, msas cleanup 2018-12-26 13:50:30 -07:00
rpms More GFS V3 updates 2021-06-11 10:22:42 -04:00
tests some security cleanup 2019-01-30 12:11:47 -07:00
.gitignore Added back in the registry info that's needed to build AWIPS 2021-05-18 14:57:20 -04:00
.travis.yml 18.2.1 naming update 2019-06-24 11:12:13 -06:00
awips_install.sh Minor updates to awips_install.sh 2021-06-14 16:56:39 -04:00
environment.yml Bump doc environment to use python 3.8 2020-06-10 12:35:47 -06:00
FOSS_COTS_License.pdf initial commit 2017-04-21 18:33:55 -06:00
mkdocs.yml Merge branch 'unidata_18.1.1' of github.com:Unidata/awips2 into unidata_18.2.1 2021-03-24 13:01:48 -04:00
README.md Change the python-awips link from rtd to our new documentation 2020-11-17 14:06:20 -07:00

Unidata AWIPS

https://www.unidata.ucar.edu/software/awips/

GitHub release Travis Badge

AWIPS (formerly know as AWIPS II or AWIPS2) is a meteorological display and analysis package developed by the National Weather Service and Raytheon for operational forecasting. AWIPS is a Java application consisting of a data-rendering client (CAVE, which runs on Red Hat/CentOS Linux, macOS, and Windows), and a backend data server (EDEX, which runs on x86_64 Red Hat/CentOS 6 and 7).

AWIPS takes a unified approach to data ingest, and most data types follow a standard path through the system, starting with an LDM client requesting data from Unidata's IDD, which are then decoded and stored as HDF5 and PostgreSQL/PostGIS metadata. Unidata supports two visualization frameworks for rendering AWIPS data:

  • CAVE - the Common AWIPS Visualization Environment
  • python-awips - a Python data access framework for requesting Numpy data arrays and Shapely geometries.

License

Unidata AWIPS source code and binaries (RPMs) are considered to be in the public domain, meaning there are no restrictions on any download, modification, or distribution in any form (original or modified). Unidata AWIPS contains no proprietery content and is therefore not subject to export controls as stated in the Master Rights licensing file.

AWIPS Data in the Cloud

Through a grant provided by Jetstream, Unidata is able to run a real-time EDEX data server in cloud, providing free AWIPS data to UCAR member institutions and other geoscience research and education organizations. When prompted in the Connectivity Preferences dialog, enter edex-cloud.unidata.ucar.edu (without adding http:// before, or :9581/services after), or select it from the default dropdown list.

EDEX in the cloud

Documentation - http://unidata.github.io/awips2/

AWIPS Source Code Respositories

Setting up the AWIPS Development Environment (ADE)

Instructions on how to deploy CAVE from Eclipse.

  1. Change /etc/yum.repos.d/awips2.repo to

     [awips2repo]
     name=AWIPS II Repository
     baseurl=https://www.unidata.ucar.edu/repos/yum/el6-dev/
     enabled=1
     protect=0
     gpgcheck=0
     proxy=_none_
    
  2. yum clean all && yum groupinstall awips2-ade

    This will install Eclipse (4.6.1), Java (1.8), Ant, Maven, Python 2.7 and its modules (Numpy, Shapely, etc.)

  3. git clone https://github.com/Unidata/awips2.git

    The full list of repositories required:

     git clone https://github.com/Unidata/awips2.git
     git clone https://github.com/Unidata/awips2-core.git
     git clone https://github.com/Unidata/awips2-core-foss.git
     git clone https://github.com/Unidata/awips2-foss.git
     git clone https://github.com/Unidata/awips2-ncep.git
     git clone https://github.com/Unidata/awips2-rpm.git
    

    Optional repositories:

     git clone https://github.com/Unidata/awips2-nws.git
     git clone https://github.com/Unidata/awips2-gsd.git
     git clone https://github.com/Unidata/awips2-drawing.git
    
  4. Run /awips2/eclipse/eclipse.sh

    • Preferences > Java

      Set to /awips2/java

    • Preferences > PyDev > Python Interpreter

      Set to /awips2/python/bin/python (should be resolved by Auto-Config)

    • File > Import > General > Existing Projects Into Workspace

      Import all of the git cloned project folders EXCEPT for the main (first) github.com/Unidata/awips2.git directory (which should be ~/awips2).

      You'll want to import ~/awips2 in three parts to ensure a clean and error-free Eclipse build:

      1. Import awips2/cave > Select All Projects > Finish
      2. Import awips2/edexOsgi > Select All Projects > Finish

      Now import all other repositories fully:

      Select awips2-core, awips2-core-foss, awips2-foss, awips2-ncep, etc. > Select All Projects > Finish

    • Project > Clean

      Run a clean build and ensure no errors are reported.

  5. Run com.raytheon.viz.product.awips/developer.product

    Double-click the developer.product file to open the Product View in Eclipse. Select Overview > Synchronize and then right-click the file in the left-side package explorer:

    Select Run As > Eclipse Application to launch CAVE in the development environment.

    Select Debug > Eclipse Application to launch CAVE in in debug mode.