Articles | Volume 12, issue 4
https://doi.org/10.5194/amt-12-2313-2019
https://doi.org/10.5194/amt-12-2313-2019
Research article
 | 
12 Apr 2019
Research article |  | 12 Apr 2019

An open platform for Aerosol InfraRed Spectroscopy analysis – AIRSpec

Matteo Reggente, Rudolf Höhn, and Satoshi Takahama
Abstract

AIRSpec is a platform consisting of several chemometric packages developed for analysis of Fourier transform infrared (FTIR) spectra of atmospheric aerosols. The packages are accessible through a browser-based interface, which also generates the necessary input files based on user interactions for provenance management and subsequent use with a command-line interface. The current implementation includes the task of baseline correction, organic functional group (FG) analysis, and multivariate calibration for any analyte with absorption in the mid-infrared. The baseline correction package uses smoothing splines to correct the drift of the baseline of ambient aerosol spectra given the variability in both environmental mixture composition and substrates. The FG analysis is performed by fitting individual Gaussian line shapes for alcohol (aCOH), carboxylic acid (COOH), alkane (aCH), carbonyl (CO), primary amine (aNH2), and ammonium (ammNH) for each spectrum. The multivariate calibration model uses the spectra to estimate the concentration of relevant target variables (e.g., organic or elemental carbon) measured with different reference instruments. In each of these analyses, AIRSpec receives spectra and user choices on parameters for model computation; input files with parameters that can later be used with a command-line interface for batch computation are returned together with diagnostic figures and tables in text format. AIRSpec is built using the open-source software consisting of R and Shiny and is released under the GNU Public License v3. Users can download, modify, and extend the package, or access its functionality through the web application (http://airspec.epfl.ch, last access: 3 April 2019) hosted at the École polytechnique fédérale de Lausanne (EPFL). AIRSpec provides a unified framework by which different chemometric techniques can be shared and accessed, and its underlying suite of packages provides the basic functionality for extending the platform with new types of analyses. For example, basic functionality includes operations for populating and accessing spectra residing in in-memory arrays or relational databases, input and output of spectra and results of computation, and user interface development. Moreover, AIRSpec facilitates the exploratory work, can be used by FTIR spectra acquired with different methods, and can be extended easily with new chemometric packages when they become available. Therefore AIRSpec provides a framework for centralizing and disseminating such algorithms. This paper describes the modular architecture and provides examples of the implemented packages using the spectra of aerosol samples collected on PM2.5 polytetrafluoroethylene (Teflon) filters.

Dates
1 Introduction

Atmospheric particulate matter (PM) has been associated with increased morbidity and mortality (Janssen et al.2011; Anderson et al.2012), reduced visibility (Watson2002; Hand et al.2012), and is one of the least understood components of the climate system (Yu et al.2006; Bond et al.2013). Chemical characterization of PM is paramount for understanding its source origins and properties such as the extent of oxidation and hygroscopicity, which determine its eventual fate. Fourier transform infrared spectroscopy (FTIR) is a technique that measures the absorption spectrum of molecules that can be related to its underlying structure. A particular challenge of atmospheric PM is that it is composed of a complex mixture of thousands of different molecules that vary in structure and physicochemical properties (Seinfeld and Pandis2016), which poses significant challenges for chemical characterization by any method or suite of methods. For FTIR, this complexity can lead to broadened and overlapping absorption bands, with significant scattering or absorption contributions from the substrate additionally impeding consistent interpretation across users.

Nonetheless, FTIR has provided chemically informative and cost-effective means for PM characterization in intensive measurements campaigns (e.g., Maria et al.2002, 2003b; Russell2003) and monitoring network samples (e.g., Interagency Monitoring of PROtected Visual Environments (IMPROVE) network and the Chemical Speciation Network/Speciation Trends Network (CSN/STN) in the USA). For example, inorganic salts (Cunningham et al.1974; Allen et al.1994), dust (Foster and Walker1984), organic functional groups (Allen et al.1994; Maria et al.2002, 2003b; Chen et al.2016; Coury and Dillner2008; Takahama et al.2013, 2016; Faber et al.2017), and carbonaceous content (Dillner and Takahama2015a, b; Reggente et al.2016) have been estimated by calibration models developed for FTIR spectra. Spectra clustering and factor analysis have been used to estimate source contributions from fossil fuels, vegetation, marine environments, and biomass burning (Russell et al.2009a, 2011; Liu et al.2009; Takahama et al.2011; Frossard et al.2014).

In this paper, we present a framework, AIRSpec (Aerosol InfraRed Spectroscopy), that simplifies the writing and deployment of chemometric software packages for FTIR spectra processing and analysis for atmospheric aerosols and harmonizes results across users. The objective of this program is not to re-implement general purpose spectroscopic tools (e.g., Bruker OPUS) or chemometrics software (e.g., CAMO Unscrambler) but to provide a platform for sharing code specifically developed and used for the analysis of FTIR spectra of atmospheric aerosol samples.

AIRSpec is built using the open-source R statistical environment (R Core Team2016) and the Shiny web application framework (Chang et al.2016), which permits the user to install the software locally or access its functionality through the web at http://airspec.epfl.ch (last access: 3 April 2019) (hosted at the École polytechnique fédérale de Lausanne, EPFL). AIRSpec provides a common data object that facilitates storage of and operations on spectra using in-memory arrays or relational databases, upon which chemometric packages that encode common decisions made for processing of spectra are built. A user interface to facilitate exploratory work consolidates the various packages and allows information to be passed among them, while power users can extend functionality or carry out batch analyses using scripts. Extensive documentation and template files provided in the demo folder of the package are provided.

In the current version, AIRSpec implements only chemometric packages of algorithm and methods already published. The available chemometric packages are the following: (i) the spectra baseline correction algorithm proposed by Kuzmiakova et al. (2016) to counteract the drift of the baseline of ambient aerosol spectra given the variability in both environmental mixture composition and substrates; (ii) the multiple peak-fitting algorithm proposed by Takahama et al. (2013) to perform functional group (FG) analysis for alcohol (aCOH), carboxylic acid (COOH), alkane (aCH), carbonyl (CO), and primary amine (aNH2); and (iii) multivariate regression and calibration approach described by Dillner and Takahama (2015a, b) and Reggente et al. (2016). Moreover, AIRSpec uses interactive plots to facilitate the exploratory work as described in Sect. 3.1.2 and 3.3.2. Therefore, the objective of AIRSpec is also to provide a platform to facilitate the utilization of chemometric packages – that can be integrated with new ones – for the analysis of FTIR spectra of atmospheric aerosol samples. The AIRSpec package also includes a demo folder where the interested user can find instructions on how to add a new chemometric package or script in a few steps. The examples shown are provided for absorbance spectra acquired from transmission mode analysis. In principle, the methods described are applicable to spectra that can be converted to equivalent absorbance spectra – for instance, measurements from attenuated total reflectance (ATR) and diffuse reflectance Fourier transform spectroscopy (DRIFTS) can be converted to approximate absorbance spectra using the weak-absorption approximation (Harrick1979) or Kubelka–Munk theory (Kubelka and Munk1931), respectively.

We explain the modular architecture (Sect. 2) and provide further details on the implementation of the chemometric packages (Sect. 3). We conclude with a summary and outlook (Sect. 4).

2 Architecture and workflow

A diagram of the AIRSpec framework and associated chemometric packages is shown in Fig. 1. Each package is a collection of functions and scripts for accomplishing specific computations or visualizations (e.g., baseline correction); users can access available functionality through R scripts run interactively or directly through the command-line interface (CLI). Alternatively, the AIRSpec framework provides a server layer to connect users with existing scripts through Shiny modules that execute common tasks via CLI and permit each module to use outputs of other modules (formally, Shiny modules are self-contained pairs of interface and server definitions that comprise an app that can be embedded within larger apps). New packages (denoted with a dotted box and dotted arrows in Fig. 1) can furthermore be incorporated into this modular framework.

https://www.atmos-meas-tech.net/12/2313/2019/amt-12-2313-2019-f01

Figure 1AIRSpec architecture diagram and workflow. Solid boxes and arrows refer to chemometric packages implemented in the current version. Dotted box and arrows denote that it is possible incorporate new packages in the modular framework.

Download

2.1 Server

The server layer more generally consists of actions to be performed in response to user interaction with an interface. In the AIRSpec framework, the server typically invokes pre-defined system calls to the operating system to run package scripts through the CL, accepting the name of a single parameter file as input. The directory of the input file also becomes the destination for all output files so that the results can be stored together with their input parameters. The input file defines all necessary information, including location and name of spectra files, and parameters of functions used by the script. The input parameter file is specified in JSON (JavaScript Object Notation) format, which is a standard hierarchical data exchange format that is human-readable and editable. The scripts and interface-generated input files are stored on the server side and, on account of security, the user cannot edit them directly through the web interface. Details on implementation as they pertain specifically to the R language are provided in the package help files, but a basic overview is presented here.

2.2 User interface (UI)

The AIRSpec user interface (UI) module provides a mechanism for generation of input parameter files and execution of predefined scripts without the requirement for using the CLI directly. The landing page (home page) provides introductory information regarding the tool and possibility to download template files on which users can base their input files for the chemometric packages.

https://www.atmos-meas-tech.net/12/2313/2019/amt-12-2313-2019-f02

Figure 2AIRSpec home page.

Table 1List of inputs for each chemometric package.

Download Print Version | Download XLSX

2.2.1 Home page

On this home page, the user typically uploads the spectra file, after which 100 random spectra are plotted for confirmation (Fig. 2). The user can then access the available chemometric packages through the additional navigation tabs. Each tab corresponds to a chemometric package, and the user can upload required and optional files or change default inputs (Table 1 summarizes the list of inputs for each tab). In each package tab, after the computation has concluded, the download button appears, and the user can retrieve an archive (zip) file containing results and input parameter files. This folder contains all the information about the analysis.

https://www.atmos-meas-tech.net/12/2313/2019/amt-12-2313-2019-f03

Figure 3Chemometric package diagram and workflow. Solid boxes and arrows refer to Shiny modules used by each chemometric package (necessary modules). Supplementary features are handled by ad hoc modules and denoted by dotted boxes and arrows.

Download

2.2.2 Tabs

In its most straightforward configuration, a chemometric package deployed on AIRSpec (solid boxes and arrows in Fig. 3) requires a script which accepts an input parameter file (JSON format) and four nested Shiny modules, which are described in turn. The user input handler module (solid red lines) writes the user inputs to the input parameter file stored in the server. The program wrapper (solid blue lines) runs the scripts of the chemometric package, passing the location of the input parameter file and saving the output files in the same folder of the input parameter file. The results and diagnostic renderer (solid orange lines) plot the output. Finally, the download handler (solid green lines) prepares and archives the input parameter file and source code output in a downloadable file.

Except for the specifications of the user input handler (e.g., input files, parameters), all the modules are general and used by each chemometric package. Therefore, to incorporate functionalities of a new package, the user only needs to prepare the package scripts and the module containing specifications of the permitted user inputs. AIRSpec additionally uses nested modules to handle ad hoc features such as dynamic input handling or ad hoc reactive plots. Again, because of the modular structure, the addition of ad hoc features does not require the changing of the necessary modules.

2.3 Relational database integration

AIRSpec uses the APRLspec package to handle its primary data object (spectra matrix) and essential operations (e.g., selecting and merging of spectra), and I/O (input/output) functions. The primary data object defines a spectrum as a row matrix with wavenumber attributes, which is a standard data structure for multivariate analysis. A new class for this type of data is defined so that operations can manipulate spectra columns and wavenumber attributes simultaneously to reduce errors of mismatched dimensions.

With an increasing number of spectra – for example in Reggente et al. (2016) the authors used thousand of spectra for their analysis – efficiency may be gained by building a spectra archive in a central, relational database. In this way, all spectra did not need to be loaded into virtual memory at once (which can be a limiting factor in analyses) but retrieved selectively from the database as necessary. The APRLspec package provides functions for accessing and storing spectra in an SQL (Structured Query Language) relational database using the similar syntax used for spectra matrices residing in virtual memory. The current implementation has been tested and used in the baseline correction package with SQLite, an embedded relational database.

3 Chemometric packages

In this section, we briefly summarize the chemometric packages developed for the analysis of atmospheric samples and currently integrated into AIRSpec: baseline correction (APRLssb R package), peak fitting (APRLmpf R package), and multivariate calibration (APRLmvr R package). For each package, we first introduce the methods and then we illustrate the analysis that the user can obtain using AIRSpec. The results are based on aerosols samples collected on PM2.5 Teflon filters. The samples were collected at IMPROVE sites on every third day in 2011. The sample collection methods and results have been already discussed in previous works (Kuzmiakova et al.2016; Takahama et al.2016; Takahama and Ruggeri2017; Dillner and Takahama2015a, b; Reggente et al.2016, 2019), and here we present some of the already published results, to give an example of what an AIRSpec user can obtain from it.

In the baseline package (Sect. 3.1.2), we first baseline-correct the spectra matrix, discussing the effective degrees of freedom (EDF) parameters selection. In Sect. 3.2.2, we use the baseline-corrected spectra of two samples (one collected at the urban site Phoenix, Arizona, and one collected at the rural location St. Marks, Florida) to quantify the FGs, the organic matter (OM), and the ratio between OM and organic carbon (OC, OM∕OC). In Sect. 3.3.2, we use the baseline-corrected spectra and collocated measurements of OC and elemental carbon (EC) – measured with thermal–optical methods – to calibrate the spectra to estimate unseen OC and EC concentrations.

3.1 Smoothing spline baseline correction

3.1.1 Background

Instrumental drift and scattering by particles and substrate used for their collection create interfering signals that hinder quantitative analysis. For the transmission mode spectra of particles collected onto PTFE presented here (obtained by ratioing sample to background single beam spectra), the subtraction of the spectrum filter before sample exposure (blank) from the aerosol spectrum has been shown to provide an insufficient remedy (Takahama et al.2013). A smoothing spline (Reinsch1967) is used to model the baseline by regressing onto background regions (where no analyte absorption is expected) and interpolating through the analyte region (Kuzmiakova et al.2016). The spectrum is divided into multiple regions so that optimal baseline correction parameters can be obtained for each segment. For each spectrum and each segment, the baseline is obtained for a given smoothness penalty λ by minimizing the objective function

(1) min f ^ j = 1 N w j y j - f ^ ν ̃ j 2 + λ [ f ^ ′′ ( t ) ] 2 d t .

yj and f^(ν̃j) are observed and fitted absorbances at wavenumber j, respectively, and λ is a smoothing penalty. The first term represents the fidelity of fitted values to the background absorbance, and the regularization term imposes rigidity on f^(ν̃j). The baseline is approximated by a natural cubic spline basis f^(ν̃)=i=1NBi(ν̃)αi with coefficient α for each basis function. w is the weight at wavenumber j, which we define as

(2) w j = 0 if ν ̃ j W A ( analyte region ) 1 if ν ̃ j W B ( background region ) .

λ has a monotonic relationship with the EDF of the smoothing spline fit (Hastie and Tibshirani1990; Green and Silverman1993), for which candidate values can be more easily understood through analogy to that of projection matrices commonly used in regression more generally. Letting f=[f(ν̃j)], W=diag(wj), ΩN=[Bi′′(t)Bj′′(t)dt], and K=(BT)-1ΩNB-1 with B=[Bi(ν̃j)], Eq. (1) can be written as

minf^(y-f)TW(y-f)+λfTKf,

for which the solution is given as a transformed version of the original spectrum:

f^=Bα^=BBTWB+λΩN-1BTWy(3)=W+λK-1Wy=Sλy.

For a given value of λ, the corresponding EDFλ=Tr(Sλ) is defined by the trace of the smoother matrix Sλ, which in turn depends on the penalty matrix K and the regression weights W (Eq. 3). EDF replaces λ and its value effectively determines the rigidness of the resulting baseline (EDF = 2 is a straight line) and must be selected by the user. For a candidate set of EDF values, the negative absorbance fraction (NAF) is used to evaluate whether a physically realistic spectrum is obtained. NAF represents the contribution of negative analyte absorbance, ||aA-||1, to the total analyte absorbance, ||aA||1:

(4) NAF = | | a A - | | 1 | | a A | | 1 × 100 % ,

where ||||1 denotes the 1-norm magnitude of a vector (summation of all absolute values of vector elements). NAF is calculated across the entire wavenumber range in the analyte region of in a given segment.

In our current implementation, we provide 𝒲B for two segments (4000–1820 and 2000–1500 cm−1) in the high-frequency region (>1500 cm−1) of the spectrum where stretching and bending modes of bonds in carbon–hydrogen, carboxylic acid, carbonyl, hydroxyl, and primary amine groups are present (Maria et al.2003a). This region has been used extensively for functional group analysis (Russell et al.2011; Takahama et al.2013) and estimation of carbon content (Dillner and Takahama2015a, b). The values of 𝒲B provided undergo iterative adjustment by the algorithm to further avoid negative regions, and with this approach have generated suitable baselines for ambient PM samples (Kuzmiakova et al.2016). However, use with laboratory samples with specific absorption patterns and low concentrations may require additional adjustment.

3.1.2 Implementation

Browser interface

In the baseline correction tab, the user can upload an optional file containing the list of samples to process; AIRSpec will otherwise baseline-correct all the samples present in the uploaded spectra file. A sequence of EDF values for which different baselines are computed and compared is provided by default but can be edited by the user. When interpolating over a wide region with substantial curvature, negative regions may arise for any EDF if the degree of curvature is not well captured by the pre-specified background regions. AIRSpec provides an option to impose a non-negativity constraint, in which interior points with substantially negative values are iteratively added to 𝒲B during the fitting process. This heuristic approach provides a lower-bound envelope of the actual absorbance that is discernable from the spectrum. By clicking the Compute button, AIRSpec will execute prepared scripts, passing as input a file with the desired configuration generated from user choices. At the end of the computation, AIRSpec plots the spectra of the baseline-corrected samples using the EDF parameter, which minimizes the median of the NAF (Kuzmiakova et al.2016). The EDF value can be changed by the user a posteriori, after which the plot will automatically update. A list of the output files can be found in Table 2 and in the dedicated wiki tab in the web interface.

Example output

Figure 4a shows the unprocessed and the baseline-corrected spectra of ambient samples collected on PTFE filters. The scatter from PTFE fibers results in a sloping baseline that masks the absorbance bands and therefore makes it challenging to extract the analyte contributions (unprocessed spectra). Moreover, the baseline is not the same for each spectrum on account of fiber orientation and stretching. These variances make standardized baseline preprocessing methods (e.g., blanks spectra or pre-scan subtraction) insufficient – a detailed description of these ambient samples can be found in the companion paper (Reggente et al.2019).

https://www.atmos-meas-tech.net/12/2313/2019/amt-12-2313-2019-f04

Figure 4Baseline correction package outputs. (a) From top to down, the panels show the unprocessed and the baseline-corrected spectra of ambient samples collected on PTFE filters. A detailed description of these ambient samples can be found in the companion paper (Reggente et al.2019). Absorbance scale in arbitrary units (a.u.). (b) The EDF selection criteria for segment one and two. The red circles represent the EDF values that minimize the median of the selection criteria NAF. In the current implementation of the chemometric package, segment one and two refer to spectra in the regions 4000–1820 and 2000–1500 cm−1, respectively (Kuzmiakova et al.2016).

Download

In the baseline-corrected spectra (Fig. 4a) the features due to the analyte are more evident than the previous case. For example, the aNH2 and CO peaks (around 1600 and 1700 cm−1 respectively) are easily distinguishable, and it is possible to notice that there are filters with different amounts of these two FGs. Similarly, the sharp peaks around 2800 and 2900 cm−1 are due to the presence of aCH, and the two broad peaks around 3100 and 3300 cm−1 are due to the presence of ammonium (ammNH), aCOH, COOH, and to lesser extent to aromatic CH and alkene CH.

Table 2List of outputs of the baseline correction chemometric package. {segment} denotes the segment label.

Download Print Version | Download XLSX

The baseline-corrected spectra have been computed using the EDF values that minimize the median of the NAF metric. We computed the baseline for different EDF values (2, 4, 6, 8, 10, 12 – the user can change these values), and the EDF values selected are 2 and 8 for segment 1 and 2 respectively (red dots in Fig. 4b). The AIRSpec user can check these diagnostic plots in the parameter selection tab and change the proposed EDF values using the input field provided in the web interface. Moreover, the user, using the implemented interactive plot, can immediately see the changes in the spectrum shapes when changing the EDF parameters, thus facilitating the exploratory work and parameter selection task.

3.2 Peak fitting

3.2.1 Background

The peak-fitting package implements a physically based approach to FG quantification (Alsberg et al.1997). This method decomposes each spectrum in Gaussian peaks or line shapes which represent the absorption profile of individual bonds. The FG abundances are estimated by relating absorption peaks or line shapes with their molar absorption coefficients as described by Takahama et al. (2013).

The analysis consists of three parts: (i) estimation of molar abundances of bonds from peak areas, (ii) reapportionment of bonds to functional groups, (iii) estimation of atomic abundances from functional group abundances (from which OM, OM∕OC, O∕C are derived). In the following equations, s denotes a line-shape function defined over wavenumbers ν̃js and a set of peak parameters θik for sample i for bond k. The integrated absorbance (peak area), together with a molar absorption coefficient and for the bond, is used to estimate the number of moles of bond per unit area of sample (denoted by n):

(5)nik=εkΔν̃jqjsν̃j,θik(6)xij=ksν̃j,θik+eij.

qjs denotes quadrature coefficients for numerical integration. For a Gaussian line shape, θik may correspond to any number of relevant amplitude, location, and width parameters for each bond, and an analytical solution exists for its integral. For fixed line shapes (e.g., cCOH), the peak parameter corresponds to a scaling coefficient. Current default values for molar absorption coefficients εk are those reported by Russell et al. (2009a) and Takahama et al. (2013).

The total carbonyl (tCO) quantified by peak fitting can include contributions from carboxyl, ketone, ester, and aldehyde carbonyl because of their proximity in absorption bands that are difficult to resolve in environmental samples (Takahama et al.2013; Reggente et al.2019). Therefore, we apportion tCO to acid (COOH) and non-acid CO (naCO):

nCOOH,nnaCO=(7)nCOOH,ntCO-nCOOH,ifntCO>nCOOHnCOOH,0,otherwise.

Using this convention, we estimate apportionment on an individual sample basis rather than in aggregate as described by Takahama et al. (2013). We compute the OC mass, OM∕OC ratios, and O∕C ratios by the constituent atomic molar abundance na, which is calculated from moles nk for FG k through a coefficient λak such that na=λaknk. The values of λak are set according to the bonding configuration proposed by Takahama and Ruggeri (2017).

(8) n C n O n H = 0.5 1 0.5 1 0.25 1 2 0 1 0 1 1 1 0 1 n aCOH n COOH n aCH n naCO n NH .

In contrast to previous studies (Russell2003; Ruthenburg et al.2014), Takahama and Ruggeri (2017) proposed the value of 0.5 for λC⋅aCOH, which is consistent with past work by Russell et al. (2009b). A value of 0.5 corresponds to the assumption that the carbon shares an aCOH bond with a single aCH bond, whereas a value of 0 corresponds to the assumption of a terminal saturated carbon in which it is accounted for by two aCH bonds. A more detailed discussion of FG quantification in atmospheric aerosol samples by FTIR is provided in the companion paper of this work (Reggente et al.2019).

3.2.2 Implementation

Browser interface

In the peak-fitting tab, the user can choose to use the uploaded spectra matrix file (uploaded in home tab) or, if already computed, the baseline-corrected spectra matrix (output of the baseline correction tab). Moreover, the user can choose the sequence of FGs (default provided) to be fitted, and the samples to process (as default AIRSpec will peak-fit all the samples present in the spectra matrix). By clicking the Compute button, AIRSpec will execute prepared scripts, passing as input a file with the desired configuration. At the end of the computation, AIRSpec plots each spectrum with the fitted peaks. Moreover, the user can download a table containing the FG distribution in organic mass (OM) and the OM∕OC ratio (for each sample). A list of the available files can be found in Table 3 and in the dedicated wiki tab in the web interface.

Example output

We fit individual Gaussian line shapes to obtain the abundance (in moles) of aCOH, COOH, aCH, CO, and aNH2 from the baseline-corrected spectra. Figure 5a shows the fitted peaks and the spectra of the sample collected at one rural and one urban site. According to the Beer–Lambert law (variations of FGs abundance are linearly dependent to the absorbance), from a visual comparison of the two samples, we can note that the urban sample is characterized by greater abundance of aNH2 (orange peaks around 1600 cm−1) and CO (dark green peaks around 1700 cm−1) FGs. Moreover, the urban sample shows greater abundances of COOH (light green bimodal line) and aCH (sharps blue peaks around 2800 and 2900 cm−1). The rural site, instead, is characterized by a greater abundance of ammNH (dark orange bimodal line).

AIRSpec provides FG abundance in several representations: the areal density (µmole cm−2) calculated from Eq. (4), the areal mass density (µg cm−2) obtained from Eq. (4), and the atomic masses of each element. The OM (in units of µg cm−2) summed from FG contributions is also provided. To obtain atmospheric concentrations (µg m−3), it is necessary to multiply these areal mass densities by the substrate collection area and divide by the volume of air sampled (3.53 cm2 and 32.8 m3, respectively, for examples shown in this article). In Fig. 5b, the first bar plot compares the FG distribution in the OM for the two samples. First, we note that OM is higher at the urban site, and the aCH accounts the 38 % and 57 % of the total OM at the rural and urban site respectively. These differences are mainly due to the higher impact of anthropogenic sources at the urban site. Moreover the significant contributions of aCOH (21 % and 14 % in the rural and urban samples respectively) and COOH (34 % and 23 % respectively) exemplify the influence of processed aerosol from surrounding regions affecting the PM2.5.

Moreover, the OM∕OC and O∕C ratios (second and third bar plots in Fig. 5b respectively) are higher at the rural site than the urban (2.08 and 1.72 respectively). This result is in agreement with measurements by GC-MS and AMS (Turpin and Lim2001; Aiken et al.2008) and can be explained by the condensation of functionalized molecules (Ziemann2005; Kroll and Seinfeld2008) and heterogeneous reactions (Smith et al.2009; Lim et al.2010) which lead to chemical aging.

https://www.atmos-meas-tech.net/12/2313/2019/amt-12-2313-2019-f05

Figure 5Peak-fitting package outputs. Example of FG analysis by FT-IR spectroscopy of atmospheric aerosol collected on one Teflon filter. (a) Baseline-corrected spectra (black lines) with fitted FGs (colored lines) for the rural (top panel) and urban (bottom panel) samples. (b) From left to right the bar plots represent the FG contributions to total OM, their non-carbon contributions to the total OM∕OC ratio (Takahama and Ruggeri2017), and the O∕C atomic ratio for rural and urban samples.

Download

Table 3List of outputs of the peak-fitting chemometric package.

Download Print Version | Download XLSX

3.3 Multivariate calibration

3.3.1 Background

Multivariate calibration is a general technique that can be applied for prediction of functional groups or any arbitrary property to which spectra can be related. Many decisions for this implementation are based on the work of Dillner and Takahama (2015a, b) to predict carbonaceous content and EC from FTIR spectra. The calibration package uses partial least squares regression (PLSR, Wold et al.1983b; Geladi and Kowalski1986) implemented by the PLS package (Mevik and Wehrens2007) of the R statistical environment (R Core Team2016). The goal is to estimate a set of coefficients B from a matrix of mean-centered spectra X for mean-centered response variables Y, with residuals E:

(9) Y = XB + E .

Because strong correlation of absorbances across wavenumbers (collinearity) exists among variables in X and the number of wavenumbers in X exceeds the number of observations, PLSR is used to combine correlated features into a smaller number of latent variables. PLSR performs a bilinear decomposition of both X and Y: X is decomposed into a product of orthogonal factors (X loadings, P) and their respective contributions (scores, T), while Y is decomposed reconstructed through T and their coefficients (or Y loadings, Q):

(10)X=TPT+F(11)Y=TQT+E.

T captures the variations across both X and Y. B can be estimated from a matrix of direction vectors R=W(PTW)-1 found to maximize covariance of transformed X with Y (hats over symbols denote statistically estimated quantities):

T^=XR^B^=R^Q^T.

Candidate models for calibration are generated by varying the number of factors (or latent variables LVs) used to represent the matrix of spectra. The anticipated performance of the model for each number of factors is estimated using root mean square error of cross-validation (CV) (Hastie et al.2009; Arlot and Celisse2010), and by default the model with the minimum value is selected.

https://www.atmos-meas-tech.net/12/2313/2019/amt-12-2313-2019-f06

Figure 6Calibration package. Example of calibration output. (a) RMSE in cross-validation against the number of components (latent variables), and the dotted vertical line indicates the number of components selected according to the minimum RMSE. (b) and (c) indicate scatterplots of predicted against observed (or reference) values for the calibration and test datasets respectively.

Download

Further measures for model interpretation are provided. The explained variation in the response variable, EVrk(Y), varies between 0 and 1 and describes the contribution of component k to the variance of the response variable r. The explained variation in the spectra, EVjk(X), varies between 0 and 1 describes the contribution of component k to the variance of the spectra at wavenumber j. The variable importance in projection (VIP) (Wold et al.1983a) provides complementary information to EVjk(X) in that it assesses the weighting of the jth wavenumber toward the explained variation in the response variable. VIP scores greater than unity for any wavenumber suggests their importance, but this value can in practice vary according to the noise level and the number of uninformative variables (Chong and Jun2005a). These expressions are calculated from the measurement and model sum of squares:

EVrk(Y)=TrTTTTrQQTTrYTY=tkTtkqrTqryrTyrEVjk(X)=TrTTTTrPPTTrXTX=tkTtkpjTpjxjTxjVIPrjk=N=1kEVr(Y)wj2=1kEVr(Y)1/2.

N is the number of wavenumbers, and w is the elements of unit normal weight vectors, which together with X loadings construct the direction vectors R. Tr(⋅) is the trace of the matrix. Their use is described by our companion paper (Reggente et al.2019).

3.3.2 Implementation

Browser interface

In the calibration tab, the user can choose to use the uploaded spectra matrix file (uploaded in home tab) or, if already computed, the baseline-corrected spectra matrix (output of the baseline correction tab). Two additional files are required: one containing the response values (target variables), and one containing the list of samples to be used for calibration and test. After providing the response file, the user chooses the target variables of the regression from a list given by the column names of the response file uploaded. The user can choose single or multiple variables, and accordingly to the type of PLS desired (PLS type field). In the case of multiple variables, AIRSpec will process a regression model for each variable (PLS1) or a regression model for the whole matrix of variables (PLS2). The user can also upload an optional file to use only specified wavenumbers or to exclude responses below the minimum detection limit of the response variable. Moreover, the user can change the default parameters used in the regression (e.g., fitting algorithm, parameters optimization criteria, limit the number of latent variables). By clicking the Compute button, AIRSpec will execute prepared scripts, passing as input a file with the desired configuration. Evaluation of models by RMSE of cross-validation, detailed statistics (figures of merit) of the calibration models, prediction values, and the diagnostic measures (EVs and VIP) are provided. A list of the available files can be found in Table 4 and in the dedicated wiki tab in the web interface.

Example output

We present an example of organic and elemental carbon (OC and EC, respectively) prediction analyzed by thermal optical reflectance (TOR). Dillner and Takahama (2015a, b) demonstrated that the FTIR spectra of aerosol samples collected on Teflon filters could be used to estimate OC and EC concentrations by building a calibration model using FTIR spectra paired with collocated quartz fiber filters analyzed for TOR OC and EC. These models achieved accuracy and precision on a par with the TOR precision for samples collected in the same year and at the same sites as those included in the calibration. Reggente et al. (2016) showed that the same calibration model could be used in different years and at different sites when concentration range and composition of carbonaceous samples in the calibration set approximately resemble those in the prediction set (new samples for which predictions are desired).

https://www.atmos-meas-tech.net/12/2313/2019/amt-12-2313-2019-f07

Figure 7AIRSpec calibration package tab.

Chong and Jun (2005b)

Table 4List of outputs of the calibration chemometric package.

Download Print Version | Download XLSX

Figure 6 shows the results of the calibration models for OC (top row) and EC (bottom row); 794 IMPROVE samples and 54 blanks are divided into two sets: one is used for model training and parameter selection (calibration set), and one is used for the evaluation (test set). The calibration set contains two-thirds of the total (chronologically stratified within each site) and the test set the remaining third. We used the baseline-corrected spectra (output of the baseline correction package, Sect. 3.1.2).

The first column of Fig. 6a shows the RMSE in cross-validation against the number of components (latent variables), and the dotted vertical line indicates the number of components selected according to the minimum RMSE. The second and third columns show the scatterplots of predicted against observed (or reference) values for the calibration (b) and test datasets (c) respectively. Bias (median difference between measured and predicted), error (median absolute bias), normalized error (median of the error divided by each measured value), and the coefficient of determination of the linear regression fit of the predicted and measured values (R2) are reported in each scatterplot. The scatterplots and metrics revealed that there is a good agreement between measured (OC and EC reference) and predicted OC and EC values. A detailed description and discussion of these results are described by Dillner and Takahama (2015a, b). In the evaluation tab (Fig. 7), there are interactive plots to highlight the desired spectra. The user can select samples from the scatterplots (using a brush tool, square boxes in Fig. 7), and then the selected spectra will change color (red for calibration samples and blue for test samples). This plot can help the user in interpreting the prediction performances, by, for example, comparing the spectra of samples with different prediction quality.

4 Summary and future development

FTIR spectroscopy is a useful tool for obtaining the functional group representation of the chemical composition of atmospheric PM. However, the complexity of FTIR spectra of PM requires algorithms for consistent interpretation applied across diverse samples. AIRSpec provides a framework for centralizing and disseminating such algorithms. We present three examples of packages implemented for specific tasks: baseline correction, peak fitting, and multivariate calibration. The decoupling of the user interface with the bulk of underlying computation provides flexibility in that exploratory work can be performed with the former, while batch computations can be carried out directly through shell scripts and new scripts can be written to take advantage of existing functions in the underlying packages. The browser interface generates input files so that provenance between input parameters and computation results are preserved, and users can use input files as templates for new computations. The outputs of the program include diagnostic plots, tables of calculations, and statistics that are relevant to the atmospheric aerosol analysis. The modular architecture exploits common patterns in input specification, computation, and user interaction such that implementation of new collections of algorithms is facilitated by reuse of existing functions. Incorporation of factor and cluster analyses, sparse calibration, and other algorithms is anticipated for future development.

Code availability

Code and software associated with baseline correction, peak fitting, multivariate calibration, and this work are licensed under the GNU Public License v3 and can be downloaded from the following repositories:

Instructions are included in the README.md file in each repository. The corresponding author can be contacted for more information.

Data availability

The spectra used for these examples will be made publicly available in the IMPROVE network database.

Author contributions

MR, ST, and RH have developed and managed the AIR-Spec platform. MR has written the manuscript and prepared the artwork.

Competing interests

The authors declare that they have no conflict of interest.

Acknowledgements

The authors thank the National Park Service (cooperative agreement P11AC91045), IMPROVE monitoring network team, and Ann Dillner for the use of their data, and funding for this work from EPFL.

Review statement

This paper was edited by Keding Lu and reviewed by Huinan Yang and three anonymous referees.

References

Aiken, A. C., Decarlo, P. F., Kroll, J. H., Worsnop, D. R., Huffman, J. A., Docherty, K. S., Ulbrich, I. M., Mohr, C., Kimmel, J. R., Sueper, D., Sun, Y., Zhang, Q., Trimborn, A., Northway, M., Ziemann, P. J., Canagaratna, M. R., Onasch, T. B., Alfarra, M. R., Prevot, A. S. H., Dommen, J., Duplissy, J., Metzger, A., Baltensperger, U., and Jimenez, J. L.: O∕C and OM∕OC ratios of primary, secondary, and ambient organic aerosols with high-resolution time-of-flight aerosol mass spectrometry, Aerosol Sci. Tech., 42, 4478–4485, https://doi.org/10.1021/es703009q, 2008. a

AIRSpec: https://gitlab.com/aprl/AIRSpec/, last access: 3 April 2019. a

Allen, D. T., Palen, E. J., Haimov, M. I., Hering, S. V., and Young, J. .: Fourier-transform Infrared-spectroscopy of Aerosol Collected In A Low-pressure Impactor (LPI/FTIR) – Method Development and Field Calibration, Aerosol Sci. Tech., 21, 325–342, https://doi.org/10.1080/02786829408959719, 1994. a, b

Alsberg, B. K., Winson, M. K., and Kell, D. B.: Improving the interpretation of multivariate and rule induction models by using a peak parameter representation, Chemometr. Intel. Labor. Syst., 36, 95–109, https://doi.org/10.1016/S0169-7439(97)00024-5, 1997. a

Anderson, J., Thundiyil, J., and Stolbach, A.: Clearing the Air: A Review of the Effects of Particulate Matter Air Pollution on Human Health, J. Med. Toxicol., 8, 166–175, https://doi.org/10.1007/s13181-011-0203-1, 2012. a

APRLmpf: https://gitlab.com/aprl/APRLmpf/, last access: 3 April 2019. a

APRLmvr: https://gitlab.com/aprl/APRLmvr/, last access: 3 April 2019. a

APRLspec: https://gitlab.com/aprl/APRLspec/, last access: 3 April 2019. a

APRLssb: https://gitlab.com/aprl/APRLssb/, last access: 3 April 2019. a

Arlot, S. and Celisse, A.: A survey of cross-validation procedures for model selection, Statist. Surv., 4, 40–79, https://doi.org/10.1214/09-SS054, 2010. a

Bond, T. C., Doherty, S. J., Fahey, D. W., Forster, P. M., Berntsen, T., DeAngelo, B. J., Flanner, M. G., Ghan, S., Kärcher, B., Koch, D., Kinne, S., Kondo, Y., Quinn, P. K., Sarofim, M. C., Schultz, M. G., Schulz, M., Venkataraman, C., Zhang, H., Zhang, S., Bellouin, N., Guttikunda, S. K., Hopke, P. K., Jacobson, M. Z., Kaiser, J. W., Klimont, Z., Lohmann, U., Schwarz, J. P., Shindell, D., Storelvmo, T., Warren, S. G., and Zender, C. S.: Bounding the role of black carbon in the climate system: A scientific assessment, J. Geophys. Res.-Atmos., 118, 5380–5552, https://doi.org/10.1002/jgrd.50171, 2013. a

Chang, W., Cheng, J., Allaire, J., Xie, Y., and McPherson, J.: shiny: Web Application Framework for R, r package version 0.13.2, available at: https://CRAN.R-project.org/package=shiny (last access: 3 April 2019), 2016. a

Chen, Q., Ikemori, F., Higo, H., Asakawa, D., and Mochida, M.: Chemical Structural Characteristics of HULIS and Other Fractionated Organic Matter in Urban Aerosols: Results from Mass Spectral and FT-IR Analysis, Environ. Sci. Technol., 50, 1721–1730, https://doi.org/10.1021/acs.est.5b05277, 2016. a

Chong, I. G. and Jun, C. H.: Performance of some variable selection methods when multicollinearity is present, Chemometr. Intel. Labor. Syst., 78, 103–112, https://doi.org/10.1016/j.chemolab.2004.12.011, 2005a. a

Chong, I.-G. and Jun, C.-H.: Performance of some variable selection methods when multicollinearity is present, Chemometr. Intel. Labor. Syst., 78, 103–112, https://doi.org/10.1016/j.chemolab.2004.12.011, 2005b. a

Coury, C. and Dillner, A. M.: A method to quantify organic functional groups and inorganic compounds in ambient aerosols using attenuated total reflectance FTIR spectroscopy and multivariate chemometric techniques, Atmos. Environ., 42, 5923–5932, https://doi.org/10.1016/j.atmosenv.2008.03.026, 2008. a

Cunningham, P. T., Johnson, S. A., and Yang, R. T.: Variations in chemistry of airborne particulate material with particle size and time, Environ. Sci. Technol., 8, 131–135, https://doi.org/10.1021/es60087a002, 1974. a

Dillner, A. M. and Takahama, S.: Predicting ambient aerosol thermal-optical reflectance (TOR) measurements from infrared spectra: organic carbon, Atmos. Meas. Tech., 8, 1097–1109, https://doi.org/10.5194/amt-8-1097-2015, 2015a. a, b, c, d, e, f, g

Dillner, A. M. and Takahama, S.: Predicting ambient aerosol thermal-optical reflectance measurements from infrared spectra: elemental carbon, Atmos. Meas. Tech., 8, 4013–4023, https://doi.org/10.5194/amt-8-4013-2015, 2015b. a, b, c, d, e, f, g

Faber, P., Drewnick, F., Bierl, R., and Borrmann, S.: Complementary online aerosol mass spectrometry and offline FT-IR spectroscopy measurements: Prospects and challenges for the analysis of anthropogenic aerosol particle emissions, Atmos. Environ., 166, 92–98, https://doi.org/10.1016/j.atmosenv.2017.07.014, 2017. a

Foster, R. D. and Walker, R. F.: Quantitative determination of crystalline silica in respirable-size dust samples by infrared spectrophotometry, Analyst, 109, 1117–1127, https://doi.org/10.1039/AN9840901117, 1984. a

Frossard, A. A., Russell, L. M., Burrows, S. M., Elliott, S. M., Bates, T. S., and Quinn, P. K.: Sources and composition of submicron organic mass in marine aerosol particles, J. Geophys. Res.-Atmos., 119, 12977–13003, https://doi.org/10.1002/2014JD021913, 2014. a

Geladi, P. and Kowalski, B. R.: Partial least-squares regression: a tutorial, Analyt. Chim. Ac., 185, 1–17, https://doi.org/10.1016/0003-2670(86)80028-9, 1986. a

Green, P. J. and Silverman, B. W.: Nonparametric regression and generalized linear models: a roughness penalty approach, CRC Press, London, UK, 1993. a

Hand, J., Schichtel, B., Pitchford, M., Malm, W., and Frank, N.: Seasonal composition of remote and urban fine particulate matter in the United States, J. Geophys. Res.-Atmos., 117, 1–22, https://doi.org/10.1029/2011JD017122, 2012. a

Harrick, N. J.: Internal Reflection Spectroscopy, Harrick Scientific Corp., Boston, MA, 1979. a

Hastie, T. J. and Tibshirani, R. J.: Generalized additive models, in: vol. 43, CRC Press, London, UK, 1990. a

Hastie, T. J., Tibshirani, R. J., and Friedman, J. H.: The elements of statistical learning : data mining, inference, and prediction, in: Springer series in statistics, Springer, New York, 2009. a

Janssen, N., Hoek, G., Simic-Lawson, M., Fischer, P., Van Bree, L., Ten Brink, H., Keuken, M., Atkinson, R. W., Anderson, H. R., Brunekreef, B., and Cassee, F. R.: Black carbon as an additional indicator of the adverse health effects of airborne particles compared with PM10 and PM2.5, Environ. Health Perspect., 119, 1691–1699, 2011. a

Kroll, J. H. and Seinfeld, J. H.: Chemistry of secondary organic aerosol: Formation and evolution of low-volatility organics in the atmosphere, Atmos. Environ., 42, 3593–3624, https://doi.org/10.1016/j.atmosenv.2008.01.003, 2008. a

Kubelka, P. and Munk, F.: Ein beitrag zur optik der farbanstriche, Zeitschrift für technische Physik, 12, 593–601, z. Tech. Phys., English translation by Westin, S.: “An article on optics of paint layers” available at:, http://www.graphics.cornell.edu/ ~westin/pubs/kubelka.pdf (last access: 3 April 2019), 1931. a

Kuzmiakova, A., Dillner, A. M., and Takahama, S.: An automated baseline correction protocol for infrared spectra of atmospheric aerosols collected on polytetrafluoroethylene (Teflon) filters, Atmos. Meas. Tech., 9, 2615–2631, https://doi.org/10.5194/amt-9-2615-2016, 2016. a, b, c, d, e, f

Lim, Y. B., Tan, Y., Perri, M. J., Seitzinger, S. P., and Turpin, B. J.: Aqueous chemistry and its role in secondary organic aerosol (SOA) formation, Atmos. Chem. Phys., 10, 10521–10539, https://doi.org/10.5194/acp-10-10521-2010, 2010. a

Liu, S., Takahama, S., Russell, L. M., Gilardoni, S., and Baumgardner, D.: Oxygenated organic functional groups and their sources in single and submicron organic particles in MILAGRO 2006 campaign, Atmos. Chem. Phys., 9, 6849–6863, https://doi.org/10.5194/acp-9-6849-2009, 2009. a

Maria, S. F., Russell, L. M., Turpin, B. J., and Porcja, R. J.: FTIR measurements of functional groups and organic mass in aerosol samples over the Caribbean, Atmos. Environ., 36, 5185–5196, https://doi.org/10.1016/s1352-2310(02)00654-4, 2002. a, b

Maria, S. F., Russell, L. M., Turpin, B. J., Porcja, R. J., Campos, T. L., Weber, R. J., and Huebert, B. J.: Source signatures of carbon monoxide and organic functional groups in Asian Pacific Regional Aerosol Characterization Experiment (ACE-Asia) submicron aerosol types, J. Geophys. Res.-Atmos., 108, 8637, https://doi.org/10.1029/2003JD003703, 2003a. a

Maria, S. F., Russell, L. M., Turpin, B. J., Porcja, R. J., Campos, T. L., Weber, R. J., and Huebert, B. J.: Source signatures of carbon monoxide and organic functional groups in Asian Pacific Regional Aerosol Characterization Experiment (ACE-Asia) submicron aerosol types, J. Geophys. Res.-Atmos., 108, 1–14, doi10.1029/2003JD003703, 2003b. a, b

Mevik, B.-H. and Wehrens, R.: The pls Package: Principal Component and Partial Least Squares Regression in R, J. Statist. Softw., 18, 1–24, 2007. a

R Core Team: R: A Language and Environment for Statistical Computing, R Foundation for Statistical Computing, Vienna, Austria, available at: https://www.R-project.org/ (last access: 3 April 2019), 2016. a, b

Reggente, M., Dillner, A. M., and Takahama, S.: Predicting ambient aerosol thermal–optical reflectance (TOR) measurements from infrared spectra: extending the predictions to different years and different sites, Atmos. Meas. Tech., 9, 441–454, https://doi.org/10.5194/amt-9-441-2016, 2016. a, b, c, d, e

Reggente, M., Dillner, A. M., and Takahama, S.: Analysis of functional groups in atmospheric aerosols by infrared spectroscopy: systematic intercomparison of calibration methods for US measurement network samples, Atmos. Meas. Tech., 12, 2287–2312, https://doi.org/10.5194/amt-12-2287-2019, 2019. a, b, c, d, e, f

Reinsch, C. H.: Smoothing by spline functions, Numer. Math., 10, 177–183, https://doi.org/10.1007/BF02162161, 1967. a

Russell, L. M.: Aerosol organic-mass-to-organic-carbon ratio measurements, Environ. Sci. Technol., 37, 2982–2987, https://doi.org/10.1021/es026123w, 2003. a, b

Russell, L. M., Bahadur, R., Hawkins, L. N., Allan, J., Baumgardner, D., Quinn, P. K., and Bates, T. S.: Organic aerosol characterization by complementary measurements of chemical bonds and molecular fragments, Atmos. Environ., 43, 6100–6105, https://doi.org/10.1016/j.atmosenv.2009.09.036, 2009a. a, b

Russell, L. M., Takahama, S., Liu, S., Hawkins, L. N., Covert, D. S., Quinn, P. K., and Bates, T. S.: Oxygenated fraction and mass of organic aerosol from direct emission and atmospheric processing measured on the R/V Ronald Brown during TEXAQS/GoMACCS 2006, J. Geophys. Res.-Atmos., 114, D00F05, https://doi.org/10.1029/2008JD011275, 2009b. a

Russell, L. M., Bahadur, R., and Ziemann, P. J.: Identifying organic aerosol sources by comparing functional group composition in chamber and atmospheric particles, P. Natl. Acad. Sci. USA, 108, 3516–3521, https://doi.org/10.1073/pnas.1006461108, 2011. a, b

Ruthenburg, T. C., Perlin, P. C., Liu, V., McDade, C. E., and Dillner, A. M.: Determination of organic matter and organic matter to organic carbon ratios by infrared spectroscopy with application to selected sites in the IMPROVE network, Atmos. Environ., 86, 47–57, https://doi.org/10.1016/j.atmosenv.2013.12.034, 2014. a

Seinfeld, J. and Pandis, S.: Atmospheric Chemistry and Physics: From Air Pollution to Climate Change, 3rd Edn., John Wiley & Sons, New York, 2016. a

Smith, J. D., Kroll, J. H., Cappa, C. D., Che, D. L., Liu, C. L., Ahmed, M., Leone, S. R., Worsnop, D. R., and Wilson, K. R.: The heterogeneous reaction of hydroxyl radicals with sub-micron squalane particles: a model system for understanding the oxidative aging of ambient aerosols, Atmos. Chem. Phys., 9, 3209–3222, https://doi.org/10.5194/acp-9-3209-2009, 2009. a

Takahama, S. and Ruggeri, G.: Technical note: Relating functional group measurements to carbon types for improved model–measurement comparisons of organic aerosol composition, Atmos. Chem. Phys., 17, 4433–4450, https://doi.org/10.5194/acp-17-4433-2017, 2017. a, b, c, d

Takahama, S., Schwartz, R. E., Russell, L. M., Macdonald, A. M., Sharma, S., and Leaitch, W. R.: Organic functional groups in aerosol particles from burning and non-burning forest emissions at a high-elevation mountain site, Atmos. Chem. Phys., 11, 6367–6386, https://doi.org/10.5194/acp-11-6367-2011, 2011. a

Takahama, S., Johnson, A., and Russell, L. M.: Quantification of Carboxylic and Carbonyl Functional Groups in Organic Aerosol Infrared Absorbance Spectra, Aerosol Sci. Tech., 47, 310–325, https://doi.org/10.1080/02786826.2012.752065, 2013. a, b, c, d, e, f, g, h

Takahama, S., Ruggeri, G., and Dillner, A. M.: Analysis of functional groups in atmospheric aerosols by infrared spectroscopy: sparse methods for statistical selection of relevant absorption bands, Atmos. Meas. Tech., 9, 3429–3454, https://doi.org/10.5194/amt-9-3429-2016, 2016. a, b

Turpin, B. J. and Lim, H. J.: Species contributions to PM2.5 mass concentrations: Revisiting common assumptions for estimating organic mass, Aerosol Sci. Tech., 35, 602–610, https://doi.org/10.1080/02786820152051454, 2001. a

Watson, J. G.: Visibility: Science and regulation, J. Air Waste Manage. Assoc., 52, 628–713, 2002. a

Wold, S., Martens, H., and Wold, H.: The Multivariate Calibration-problem In Chemistry Solved By the PLS Method, Lect. Notes Math., 973, 286–293, 1983a.  a

Wold, S., Martens, H., and Wold, H.: The multivariate calibration problem in chemistry solved by the PLS method, in: Matrix pencils, Springer, Berlin, Germany, 286–293, 1983b. a

Yu, H., Kaufman, Y. J., Chin, M., Feingold, G., Remer, L. A., Anderson, T. L., Balkanski, Y., Bellouin, N., Boucher, O., Christopher, S., DeCola, P., Kahn, R., Koch, D., Loeb, N., Reddy, M. S., Schulz, M., Takemura, T., and Zhou, M.: A review of measurement-based assessments of the aerosol direct radiative effect and forcing, Atmos. Chem. Phys., 6, 613–666, https://doi.org/10.5194/acp-6-613-2006, 2006. a

Ziemann, P. J.: Aerosol products, mechanisms, and kinetics of heterogeneous reactions of ozone with oleic acid in pure and mixed particles, Faraday Discuss., 130, 469–490, https://doi.org/10.1039/b417502f, 2005. a

Short summary
The infrared spectra of atmospheric particles are rich in chemical information but require sophisticated statistical methods to extract information on account of their complex absorption profiles. We present an open software suite which makes current algorithms used for analysis of such spectra available to the community, with a browser-based interface for general users and modular architecture that facilitates addition of new methods by developers.