Integrating RDA data processing capabilities into a workflow

March 23, 2017
Posted by: Doug Schuster

Note: This page was originally sourced from our Blogger page: http://ncarrda.blogspot.com/2017/03/integrating-rda-data-processing.html

Do you have a workflow that leverages repeated subset requests from an RDA dataset or would you like to avoid continually filling out web forms? Would you like to download data once a request is ready without checking your email?  The RDA provides the capability for users to submit subset requests and download data programmatically through the external applications API.  The API provides users with the following capabilities:

  • Get a summary of datasets that have subsetting available
  • Get a list of parameters available for subsetting by dataset
  • Submit a temporal, spatial, parameter subset request from a dataset
  • Check on data request processing status
  • Get a list of output files found in a completed data request (supports data transfer)
  • Set up a Globus endpoint share for a completed data request
  • Purge data request

A complete description of API capabilities is described here.

A couple of example applications have been developed in python that utilize the capabilities provided through the API.


  • rdams-client.py:  The rdams-client python utility can be run by registered RDA users to get parameters available for subsetting by dataset, to submit subset requests on select gridded data sets, to check on the processing status of any subset request, and to download completed request output files to a local system.   This utility may be useful to users who want integrate data subset request submission and download as part of a broader workflow. Download and execute './rdams-client.py -help' for more details (make sure to set 'rdams-client.py' as executable).  For additional information, see the CISL rdams documentation page.
  • rda-request-manager.py:  The rda-request-manager python utility can be run by registered RDA users to check RDA data request processing status, download completed request output files to a local system, and purge request files from the RDA data server.  This utility may be useful to users who submit any type of request through the web interface (subset, file format conversion, or restage data from tape for download), and would like to create a cron job to check on request processing status, and download requests as they become available, instead of waiting for email notifications and downloading data through the web interface.  Download and execute './rda-request-manager.py -help' for additional information (make sure to set 'rda-request-manager.py' as executable).