Py-ADAPT Package

pyadapt.autodetect

Main read/write utility for the Py-ADAPT package.

Makes use of the read() function to automatically detect the datastream of the netCDF file and pass it to the appropriate pyadapt.datastreams.default.ARMCLASS Class definition.

Note

See the read() function for more documentation

pyadapt.autodetect.read(in_file)

Automatically read the netCDF file passed into the routine and send it off to the appropriate Class definition to set up the data object.

Parameters:in_file (str) – the filepath of the file you wish to look at
Returns:ARMCLASS Class object

USEAGE:

>>> import pyadapt
>>> sounding = pyadapt.read('inputfile.nc')
>>> sounding.plot()

The Py-ADAPT package currently supports the following datastreams

  • SCATTERING
  • SFCMET
  • SOUNDINGS

Supported File Types

  • .nc
  • .cdf
  • .cdf4

Table Of Contents

Previous topic

Welcome to Py-ADAPT’s documentation!

Next topic

pyadapt.datastreams

This Page