├── .github └── workflows │ └── update.yml ├── .gitignore ├── LICENSE ├── README.md ├── data ├── co2-annmean-gl.csv ├── co2-annmean-mlo.csv ├── co2-gr-gl.csv ├── co2-gr-mlo.csv ├── co2-mm-gl.csv └── co2-mm-mlo.csv ├── datapackage.json └── scripts └── process.sh /.github/workflows/update.yml: -------------------------------------------------------------------------------- 1 | name: Update Data from NOAA 2 | on: 3 | schedule: 4 | - cron: "0 0 1 * *" 5 | workflow_dispatch: 6 | jobs: 7 | update-data: 8 | runs-on: ubuntu-latest 9 | steps: 10 | - name: Check Out 11 | uses: actions/checkout@v4 12 | - name: Update Data 13 | run: "./scripts/process.sh" 14 | - name: Commit and Push Data 15 | uses: EndBug/add-and-commit@v9 16 | with: 17 | default_author: github_actions -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | tmp 2 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- 1 | This is free and unencumbered software released into the public domain. 2 | 3 | Anyone is free to copy, modify, publish, use, compile, sell, or 4 | distribute this software, either in source code form or as a compiled 5 | binary, for any purpose, commercial or non-commercial, and by any 6 | means. 7 | 8 | In jurisdictions that recognize copyright laws, the author or authors 9 | of this software dedicate any and all copyright interest in the 10 | software to the public domain. We make this dedication for the benefit 11 | of the public at large and to the detriment of our heirs and 12 | successors. We intend this dedication to be an overt act of 13 | relinquishment in perpetuity of all present and future rights to this 14 | software under copyright law. 15 | 16 | THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, 17 | EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF 18 | MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. 19 | IN NO EVENT SHALL THE AUTHORS BE LIABLE FOR ANY CLAIM, DAMAGES OR 20 | OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, 21 | ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR 22 | OTHER DEALINGS IN THE SOFTWARE. 23 | 24 | For more information, please refer to 25 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | badge 2 | 3 | CO2 PPM - Trends in Atmospheric Carbon Dioxide. Data are sourced from the US Government's Earth System Research Laboratory, Global Monitoring Division. Two main series are provided: the Mauna Loa series (which has the longest continuous series since 1958) and a Global Average series (a global average over marine surface sites). 4 | 5 | ## Data 6 | 7 | ### Description 8 | 9 | > Data are reported as a dry air mole fraction defined as the number of molecules of carbon dioxide divided by the number of all molecules in air, including CO2 itself, after water vapor has been removed. The mole fraction is expressed as parts per million (ppm). Example: 0.000400 is expressed as 400 ppm.[*][ccgg-trends] 10 | 11 | ### Citations 12 | 13 | 1. *Trends in Atmospheric Carbon Dioxide, Mauna Loa, Hawaii.* Dr. Pieter Tans, NOAA/ESRL (www.esrl.noaa.gov/gmd/ccgg/trends/) and Dr. Ralph Keeling, Scripps Institution of Oceanography (scrippsco2.ucsd.edu/). 14 | 1. *Trends in Atmospheric Carbon Dioxide, Global.* Ed Dlugokencky and Pieter Tans, NOAA/ESRL (www.esrl.noaa.gov/gmd/ccgg/trends/). 15 | 16 | ### Sources 17 | 18 | - Trends in Atmospheric Carbon Dioxide, Mauna Loa, Hawaii: http://www.esrl.noaa.gov/gmd/ccgg/trends/index.html 19 | - Trends in Atmospheric Carbon Dioxide, Global: http://www.esrl.noaa.gov/gmd/ccgg/trends/global.html 20 | 21 | ## Preparation 22 | 23 | ### Processing 24 | 25 | Run the following script from this directory to download and process the data: 26 | 27 | ```bash 28 | ./scripts/process.sh 29 | ``` 30 | 31 | Most likely works for Unix systems only. (Not Windows compatible) 32 | 33 | ### Resources 34 | 35 | The raw data is output to `./tmp`. (Not committed to the repository, you'll have to clone and run locally) The processed data is output to `./data`. 36 | 37 | ## License 38 | 39 | ### ODC-PDDL-1.0 40 | 41 | This Data Package is made available under the Public Domain Dedication and License v1.0 whose full text can be found at: http://www.opendatacommons.org/licenses/pddl/1.0/ 42 | 43 | ### Notes 44 | 45 | The [terms of use][gmd] of the source dataset list three specific restrictions on public use of these data: 46 | 47 | > The information on government servers are in the public domain, unless specifically annotated otherwise, and may be used freely by the public so long as you do not 1) claim it is your own (e.g. by claiming copyright for NOAA information – see next paragraph), 2) use it in a manner that implies an endorsement or affiliation with NOAA, or 3) modify it in content and then present it as official government material.[*][gmd] 48 | 49 | [ccgg-trends]: http://www.esrl.noaa.gov/gmd/ccgg/trends/index.html 50 | [gmd]: http://www.esrl.noaa.gov/gmd/about/disclaimer.html 51 | -------------------------------------------------------------------------------- /data/co2-annmean-gl.csv: -------------------------------------------------------------------------------- 1 | Year,Mean,Uncertainty 2 | 1979,336.85,0.11 3 | 1980,338.91,0.07 4 | 1981,340.11,0.09 5 | 1982,340.85,0.03 6 | 1983,342.53,0.05 7 | 1984,344.07,0.07 8 | 1985,345.54,0.07 9 | 1986,346.97,0.08 10 | 1987,348.68,0.10 11 | 1988,351.16,0.07 12 | 1989,352.78,0.07 13 | 1990,354.05,0.06 14 | 1991,355.39,0.06 15 | 1992,356.09,0.07 16 | 1993,356.84,0.07 17 | 1994,358.33,0.08 18 | 1995,360.18,0.05 19 | 1996,361.93,0.04 20 | 1997,363.05,0.04 21 | 1998,365.70,0.05 22 | 1999,367.80,0.06 23 | 2000,368.97,0.06 24 | 2001,370.57,0.04 25 | 2002,372.59,0.04 26 | 2003,375.15,0.04 27 | 2004,376.95,0.05 28 | 2005,378.97,0.05 29 | 2006,381.14,0.05 30 | 2007,382.90,0.05 31 | 2008,385.02,0.04 32 | 2009,386.50,0.04 33 | 2010,388.75,0.06 34 | 2011,390.62,0.05 35 | 2012,392.65,0.07 36 | 2013,395.39,0.06 37 | 2014,397.34,0.05 38 | 2015,399.65,0.05 39 | 2016,403.09,0.07 40 | 2017,405.22,0.08 41 | 2018,407.61,0.07 42 | 2019,410.07,0.08 43 | 2020,412.44,0.07 44 | 2021,414.70,0.07 45 | 2022,417.08,0.08 46 | 2023,419.36,0.10 47 | 2024,422.79,0.08 48 | -------------------------------------------------------------------------------- /data/co2-annmean-mlo.csv: -------------------------------------------------------------------------------- 1 | Year,Mean,Uncertainty 2 | 1959,315.98,0.12 3 | 1960,316.91,0.12 4 | 1961,317.64,0.12 5 | 1962,318.45,0.12 6 | 1963,318.99,0.12 7 | 1964,319.62,0.12 8 | 1965,320.04,0.12 9 | 1966,321.37,0.12 10 | 1967,322.18,0.12 11 | 1968,323.05,0.12 12 | 1969,324.62,0.12 13 | 1970,325.68,0.12 14 | 1971,326.32,0.12 15 | 1972,327.46,0.12 16 | 1973,329.68,0.12 17 | 1974,330.19,0.12 18 | 1975,331.13,0.12 19 | 1976,332.03,0.12 20 | 1977,333.84,0.12 21 | 1978,335.41,0.12 22 | 1979,336.84,0.12 23 | 1980,338.76,0.12 24 | 1981,340.12,0.12 25 | 1982,341.48,0.12 26 | 1983,343.15,0.12 27 | 1984,344.87,0.12 28 | 1985,346.35,0.12 29 | 1986,347.61,0.12 30 | 1987,349.31,0.12 31 | 1988,351.69,0.12 32 | 1989,353.20,0.12 33 | 1990,354.45,0.12 34 | 1991,355.70,0.12 35 | 1992,356.54,0.12 36 | 1993,357.21,0.12 37 | 1994,358.96,0.12 38 | 1995,360.97,0.12 39 | 1996,362.74,0.12 40 | 1997,363.88,0.12 41 | 1998,366.84,0.12 42 | 1999,368.54,0.12 43 | 2000,369.71,0.12 44 | 2001,371.32,0.12 45 | 2002,373.45,0.12 46 | 2003,375.98,0.12 47 | 2004,377.70,0.12 48 | 2005,379.98,0.12 49 | 2006,382.09,0.12 50 | 2007,384.02,0.12 51 | 2008,385.83,0.12 52 | 2009,387.64,0.12 53 | 2010,390.10,0.12 54 | 2011,391.85,0.12 55 | 2012,394.06,0.12 56 | 2013,396.74,0.12 57 | 2014,398.81,0.12 58 | 2015,401.01,0.12 59 | 2016,404.41,0.12 60 | 2017,406.76,0.12 61 | 2018,408.72,0.12 62 | 2019,411.65,0.12 63 | 2020,414.21,0.12 64 | 2021,416.41,0.12 65 | 2022,418.53,0.12 66 | 2023,421.08,0.12 67 | 2024,424.61,0.12 68 | -------------------------------------------------------------------------------- /data/co2-gr-gl.csv: -------------------------------------------------------------------------------- 1 | Year,Annual Increase,Uncertainty 2 | 1959,0.96,0.31 3 | 1960,0.71,0.27 4 | 1961,0.78,0.27 5 | 1962,0.56,0.27 6 | 1963,0.57,0.28 7 | 1964,0.49,0.27 8 | 1965,1.10,0.26 9 | 1966,1.10,0.28 10 | 1967,0.61,0.34 11 | 1968,0.99,0.32 12 | 1969,1.32,0.29 13 | 1970,1.13,0.32 14 | 1971,0.73,0.30 15 | 1972,1.47,0.31 16 | 1973,1.46,0.31 17 | 1974,0.68,0.31 18 | 1975,1.23,0.27 19 | 1976,0.97,0.28 20 | 1977,1.92,0.29 21 | 1978,1.29,0.24 22 | 1979,2.14,0.26 23 | 1980,1.68,0.11 24 | 1981,1.15,0.06 25 | 1982,1.00,0.09 26 | 1983,1.84,0.08 27 | 1984,1.23,0.11 28 | 1985,1.65,0.09 29 | 1986,1.01,0.10 30 | 1987,2.66,0.08 31 | 1988,2.17,0.09 32 | 1989,1.45,0.08 33 | 1990,1.23,0.07 34 | 1991,0.75,0.10 35 | 1992,0.73,0.09 36 | 1993,1.23,0.07 37 | 1994,1.67,0.10 38 | 1995,1.99,0.10 39 | 1996,1.05,0.06 40 | 1997,1.97,0.07 41 | 1998,2.84,0.12 42 | 1999,1.35,0.09 43 | 2000,1.24,0.12 44 | 2001,1.85,0.10 45 | 2002,2.37,0.07 46 | 2003,2.28,0.10 47 | 2004,1.56,0.05 48 | 2005,2.46,0.07 49 | 2006,1.77,0.08 50 | 2007,2.13,0.06 51 | 2008,1.77,0.05 52 | 2009,1.58,0.06 53 | 2010,2.36,0.05 54 | 2011,1.74,0.07 55 | 2012,2.41,0.06 56 | 2013,2.44,0.07 57 | 2014,2.03,0.08 58 | 2015,2.96,0.07 59 | 2016,2.83,0.08 60 | 2017,2.15,0.10 61 | 2018,2.37,0.10 62 | 2019,2.50,0.07 63 | 2020,2.33,0.08 64 | 2021,2.36,0.08 65 | 2022,2.28,0.11 66 | 2023,2.73,0.08 67 | 2024,3.77,0.08 68 | -------------------------------------------------------------------------------- /data/co2-gr-mlo.csv: -------------------------------------------------------------------------------- 1 | Year,Annual Increase,Uncertainty 2 | 3 | 1959,0.94,0.11 4 | 1960,0.50,0.11 5 | 1961,0.96,0.11 6 | 1962,0.65,0.11 7 | 1963,0.71,0.11 8 | 1964,0.31,0.11 9 | 1965,1.06,0.11 10 | 1966,1.28,0.11 11 | 1967,0.69,0.11 12 | 1968,1.06,0.11 13 | 1969,1.35,0.11 14 | 1970,1.00,0.11 15 | 1971,0.80,0.11 16 | 1972,1.74,0.11 17 | 1973,1.18,0.11 18 | 1974,0.96,0.11 19 | 1975,1.10,0.11 20 | 1976,0.79,0.11 21 | 1977,2.15,0.11 22 | 1978,1.30,0.11 23 | 1979,1.83,0.11 24 | 1980,1.68,0.11 25 | 1981,1.43,0.11 26 | 1982,0.86,0.11 27 | 1983,2.36,0.11 28 | 1984,1.51,0.11 29 | 1985,1.21,0.11 30 | 1986,1.47,0.11 31 | 1987,2.06,0.11 32 | 1988,2.24,0.11 33 | 1989,1.24,0.11 34 | 1990,1.20,0.11 35 | 1991,1.05,0.11 36 | 1992,0.49,0.11 37 | 1993,1.36,0.11 38 | 1994,1.96,0.11 39 | 1995,2.01,0.11 40 | 1996,1.24,0.11 41 | 1997,1.91,0.11 42 | 1998,2.97,0.11 43 | 1999,0.92,0.11 44 | 2000,1.62,0.11 45 | 2001,1.62,0.11 46 | 2002,2.51,0.11 47 | 2003,2.26,0.11 48 | 2004,1.59,0.11 49 | 2005,2.57,0.11 50 | 2006,1.69,0.11 51 | 2007,2.31,0.11 52 | 2008,1.54,0.11 53 | 2009,2.00,0.11 54 | 2010,2.30,0.11 55 | 2011,1.92,0.11 56 | 2012,2.65,0.11 57 | 2013,1.99,0.11 58 | 2014,2.17,0.11 59 | 2015,2.95,0.11 60 | 2016,3.03,0.11 61 | 2017,1.90,0.11 62 | 2018,2.85,0.11 63 | 2019,2.49,0.11 64 | 2020,2.30,0.11 65 | 2021,2.34,0.11 66 | 2022,1.83,0.11 67 | 2023,3.36,0.11 68 | 2024,3.33,0.11 69 | -------------------------------------------------------------------------------- /data/co2-mm-gl.csv: -------------------------------------------------------------------------------- 1 | Date,Decimal Date,Average,Trend 2 | 1979-01,1979.042,336.56,0.11,335.92,0.10 3 | 1979-02,1979.125,337.29,0.09,336.26,0.10 4 | 1979-03,1979.208,337.88,0.11,336.51,0.10 5 | 1979-04,1979.292,338.32,0.13,336.72,0.11 6 | 1979-05,1979.375,338.26,0.04,336.71,0.11 7 | 1979-06,1979.458,337.38,0.18,336.61,0.11 8 | 1979-07,1979.542,335.56,0.27,336.40,0.12 9 | 1979-08,1979.625,334.36,0.30,336.65,0.12 10 | 1979-09,1979.708,335.02,0.24,337.40,0.12 11 | 1979-10,1979.792,336.36,0.25,337.71,0.12 12 | 1979-11,1979.875,337.36,0.20,337.68,0.11 13 | 1979-12,1979.958,337.89,0.15,337.66,0.11 14 | 1980-01,1980.042,338.57,0.13,337.93,0.10 15 | 1980-02,1980.125,339.26,0.09,338.22,0.10 16 | 1980-03,1980.208,339.59,0.08,338.23,0.09 17 | 1980-04,1980.292,339.99,0.08,338.39,0.08 18 | 1980-05,1980.375,340.44,0.09,338.89,0.08 19 | 1980-06,1980.458,339.99,0.09,339.22,0.07 20 | 1980-07,1980.542,338.44,0.16,339.28,0.07 21 | 1980-08,1980.625,337.21,0.18,339.50,0.06 22 | 1980-09,1980.708,337.05,0.12,339.44,0.06 23 | 1980-10,1980.792,337.82,0.08,339.17,0.07 24 | 1980-11,1980.875,338.93,0.07,339.26,0.07 25 | 1980-12,1980.958,339.64,0.08,339.40,0.07 26 | 1981-01,1981.042,340.18,0.10,339.54,0.08 27 | 1981-02,1981.125,340.74,0.11,339.71,0.08 28 | 1981-03,1981.208,341.38,0.12,340.02,0.08 29 | 1981-04,1981.292,341.68,0.09,340.08,0.09 30 | 1981-05,1981.375,341.43,0.07,339.88,0.09 31 | 1981-06,1981.458,340.63,0.11,339.86,0.09 32 | 1981-07,1981.542,339.22,0.14,340.06,0.09 33 | 1981-08,1981.625,338.08,0.16,340.37,0.09 34 | 1981-09,1981.708,337.97,0.12,340.36,0.09 35 | 1981-10,1981.792,339.07,0.10,340.42,0.08 36 | 1981-11,1981.875,340.18,0.12,340.50,0.08 37 | 1981-12,1981.958,340.75,0.09,340.51,0.07 38 | 1982-01,1982.042,341.36,0.09,340.74,0.07 39 | 1982-02,1982.125,341.95,0.09,340.91,0.06 40 | 1982-03,1982.208,342.23,0.07,340.84,0.05 41 | 1982-04,1982.292,342.52,0.07,340.91,0.04 42 | 1982-05,1982.375,342.36,0.06,340.82,0.04 43 | 1982-06,1982.458,341.49,0.03,340.72,0.03 44 | 1982-07,1982.542,339.75,0.08,340.61,0.03 45 | 1982-08,1982.625,338.11,0.09,340.40,0.03 46 | 1982-09,1982.708,338.16,0.07,340.54,0.03 47 | 1982-10,1982.792,339.61,0.05,340.97,0.02 48 | 1982-11,1982.875,340.95,0.06,341.27,0.02 49 | 1982-12,1982.958,341.77,0.06,341.53,0.02 50 | 1983-01,1983.042,342.37,0.05,341.72,0.03 51 | 1983-02,1983.125,342.75,0.07,341.71,0.03 52 | 1983-03,1983.208,343.04,0.08,341.70,0.03 53 | 1983-04,1983.292,343.51,0.05,341.94,0.03 54 | 1983-05,1983.375,343.85,0.10,342.30,0.04 55 | 1983-06,1983.458,343.51,0.09,342.72,0.04 56 | 1983-07,1983.542,342.15,0.13,342.91,0.04 57 | 1983-08,1983.625,340.63,0.15,342.86,0.05 58 | 1983-09,1983.708,340.54,0.09,342.95,0.05 59 | 1983-10,1983.792,341.75,0.12,343.15,0.05 60 | 1983-11,1983.875,342.83,0.12,343.19,0.06 61 | 1983-12,1983.958,343.49,0.11,343.26,0.06 62 | 1984-01,1984.042,344.32,0.05,343.66,0.06 63 | 1984-02,1984.125,344.82,0.05,343.82,0.06 64 | 1984-03,1984.208,344.96,0.06,343.61,0.07 65 | 1984-04,1984.292,345.19,0.12,343.56,0.07 66 | 1984-05,1984.375,345.33,0.10,343.78,0.07 67 | 1984-06,1984.458,344.57,0.06,343.80,0.07 68 | 1984-07,1984.542,343.20,0.13,344.01,0.08 69 | 1984-08,1984.625,342.21,0.18,344.50,0.08 70 | 1984-09,1984.708,342.13,0.15,344.57,0.08 71 | 1984-10,1984.792,342.99,0.13,344.38,0.08 72 | 1984-11,1984.875,344.16,0.15,344.46,0.08 73 | 1984-12,1984.958,345.01,0.12,344.72,0.08 74 | 1985-01,1985.042,345.36,0.10,344.66,0.08 75 | 1985-02,1985.125,345.81,0.09,344.79,0.08 76 | 1985-03,1985.208,346.65,0.10,345.32,0.08 77 | 1985-04,1985.292,346.94,0.10,345.34,0.08 78 | 1985-05,1985.375,346.78,0.09,345.21,0.08 79 | 1985-06,1985.458,346.27,0.10,345.48,0.08 80 | 1985-07,1985.542,344.93,0.14,345.75,0.08 81 | 1985-08,1985.625,343.42,0.14,345.73,0.08 82 | 1985-09,1985.708,343.37,0.09,345.82,0.08 83 | 1985-10,1985.792,344.65,0.07,346.04,0.08 84 | 1985-11,1985.875,345.79,0.09,346.11,0.08 85 | 1985-12,1985.958,346.55,0.09,346.25,0.07 86 | 1986-01,1986.042,347.11,0.10,346.43,0.07 87 | 1986-02,1986.125,347.34,0.11,346.35,0.07 88 | 1986-03,1986.208,347.71,0.13,346.39,0.07 89 | 1986-04,1986.292,348.22,0.14,346.61,0.07 90 | 1986-05,1986.375,348.32,0.13,346.75,0.08 91 | 1986-06,1986.458,347.76,0.10,346.99,0.08 92 | 1986-07,1986.542,346.29,0.15,347.14,0.08 93 | 1986-08,1986.625,344.92,0.12,347.22,0.08 94 | 1986-09,1986.708,344.86,0.11,347.26,0.08 95 | 1986-10,1986.792,346.03,0.15,347.40,0.08 96 | 1986-11,1986.875,347.30,0.16,347.63,0.08 97 | 1986-12,1986.958,347.76,0.13,347.46,0.08 98 | 1987-01,1987.042,348.00,0.11,347.23,0.09 99 | 1987-02,1987.125,348.55,0.11,347.45,0.09 100 | 1987-03,1987.208,349.27,0.10,347.86,0.09 101 | 1987-04,1987.292,349.96,0.12,348.27,0.09 102 | 1987-05,1987.375,350.23,0.16,348.66,0.10 103 | 1987-06,1987.458,349.47,0.14,348.80,0.10 104 | 1987-07,1987.542,347.89,0.17,348.87,0.10 105 | 1987-08,1987.625,346.65,0.18,349.03,0.10 106 | 1987-09,1987.708,346.69,0.12,349.13,0.10 107 | 1987-10,1987.792,347.96,0.13,349.34,0.10 108 | 1987-11,1987.875,349.25,0.13,349.57,0.09 109 | 1987-12,1987.958,350.19,0.13,349.87,0.09 110 | 1988-01,1988.042,350.91,0.11,350.14,0.09 111 | 1988-02,1988.125,351.47,0.08,350.37,0.08 112 | 1988-03,1988.208,351.85,0.10,350.39,0.08 113 | 1988-04,1988.292,352.30,0.13,350.52,0.08 114 | 1988-05,1988.375,352.46,0.12,350.83,0.07 115 | 1988-06,1988.458,351.76,0.10,351.07,0.07 116 | 1988-07,1988.542,350.28,0.13,351.26,0.07 117 | 1988-08,1988.625,349.09,0.15,351.55,0.07 118 | 1988-09,1988.708,349.27,0.12,351.79,0.07 119 | 1988-10,1988.792,350.44,0.10,351.85,0.06 120 | 1988-11,1988.875,351.61,0.09,351.97,0.06 121 | 1988-12,1988.958,352.46,0.10,352.16,0.07 122 | 1989-01,1989.042,352.99,0.09,352.18,0.07 123 | 1989-02,1989.125,353.45,0.09,352.33,0.07 124 | 1989-03,1989.208,354.00,0.10,352.57,0.07 125 | 1989-04,1989.292,354.38,0.09,352.60,0.07 126 | 1989-05,1989.375,354.19,0.10,352.51,0.07 127 | 1989-06,1989.458,353.26,0.09,352.57,0.07 128 | 1989-07,1989.542,351.56,0.12,352.58,0.07 129 | 1989-08,1989.625,350.21,0.14,352.69,0.07 130 | 1989-09,1989.708,350.56,0.10,353.10,0.07 131 | 1989-10,1989.792,351.85,0.11,353.27,0.07 132 | 1989-11,1989.875,353.03,0.11,353.38,0.07 133 | 1989-12,1989.958,353.90,0.10,353.58,0.07 134 | 1990-01,1990.042,354.45,0.12,353.68,0.07 135 | 1990-02,1990.125,354.87,0.14,353.81,0.07 136 | 1990-03,1990.208,355.19,0.12,353.77,0.07 137 | 1990-04,1990.292,355.50,0.10,353.73,0.07 138 | 1990-05,1990.375,355.40,0.08,353.74,0.06 139 | 1990-06,1990.458,354.31,0.08,353.65,0.06 140 | 1990-07,1990.542,352.70,0.10,353.79,0.06 141 | 1990-08,1990.625,351.60,0.11,354.10,0.06 142 | 1990-09,1990.708,351.80,0.08,354.31,0.06 143 | 1990-10,1990.792,353.18,0.08,354.59,0.05 144 | 1990-11,1990.875,354.44,0.10,354.69,0.05 145 | 1990-12,1990.958,355.18,0.07,354.75,0.05 146 | 1991-01,1991.042,355.75,0.08,354.96,0.05 147 | 1991-02,1991.125,356.18,0.07,355.09,0.05 148 | 1991-03,1991.208,356.69,0.07,355.25,0.05 149 | 1991-04,1991.292,357.20,0.10,355.45,0.05 150 | 1991-05,1991.375,357.10,0.11,355.47,0.06 151 | 1991-06,1991.458,356.17,0.08,355.56,0.06 152 | 1991-07,1991.542,354.54,0.11,355.66,0.06 153 | 1991-08,1991.625,353.03,0.14,355.53,0.06 154 | 1991-09,1991.708,352.90,0.10,355.43,0.07 155 | 1991-10,1991.792,354.01,0.10,355.41,0.07 156 | 1991-11,1991.875,355.16,0.12,355.38,0.07 157 | 1991-12,1991.958,355.95,0.11,355.49,0.07 158 | 1992-01,1992.042,356.53,0.08,355.71,0.07 159 | 1992-02,1992.125,356.89,0.10,355.78,0.07 160 | 1992-03,1992.208,357.27,0.10,355.79,0.07 161 | 1992-04,1992.292,357.76,0.10,355.97,0.07 162 | 1992-05,1992.375,357.83,0.11,356.20,0.07 163 | 1992-06,1992.458,356.87,0.08,356.28,0.07 164 | 1992-07,1992.542,355.18,0.11,356.33,0.07 165 | 1992-08,1992.625,353.67,0.10,356.23,0.07 166 | 1992-09,1992.708,353.59,0.12,356.14,0.07 167 | 1992-10,1992.792,354.81,0.10,356.22,0.07 168 | 1992-11,1992.875,355.99,0.11,356.21,0.07 169 | 1992-12,1992.958,356.75,0.11,356.28,0.07 170 | 1993-01,1993.042,357.21,0.11,356.37,0.07 171 | 1993-02,1993.125,357.56,0.11,356.40,0.07 172 | 1993-03,1993.208,357.96,0.10,356.51,0.07 173 | 1993-04,1993.292,358.42,0.10,356.65,0.07 174 | 1993-05,1993.375,358.37,0.13,356.73,0.07 175 | 1993-06,1993.458,357.35,0.11,356.68,0.07 176 | 1993-07,1993.542,355.74,0.15,356.76,0.07 177 | 1993-08,1993.625,354.45,0.15,356.91,0.07 178 | 1993-09,1993.708,354.47,0.09,357.05,0.07 179 | 1993-10,1993.792,355.71,0.10,357.19,0.07 180 | 1993-11,1993.875,356.95,0.09,357.29,0.07 181 | 1993-12,1993.958,357.85,0.10,357.49,0.07 182 | 1994-01,1994.042,358.48,0.11,357.62,0.07 183 | 1994-02,1994.125,359.02,0.11,357.86,0.07 184 | 1994-03,1994.208,359.36,0.09,357.91,0.08 185 | 1994-04,1994.292,359.71,0.10,357.93,0.08 186 | 1994-05,1994.375,359.74,0.13,358.07,0.08 187 | 1994-06,1994.458,358.81,0.10,358.11,0.08 188 | 1994-07,1994.542,357.27,0.10,358.27,0.08 189 | 1994-08,1994.625,356.05,0.12,358.56,0.07 190 | 1994-09,1994.708,356.02,0.08,358.67,0.07 191 | 1994-10,1994.792,357.26,0.09,358.80,0.07 192 | 1994-11,1994.875,358.69,0.11,359.04,0.07 193 | 1994-12,1994.958,359.55,0.13,359.16,0.06 194 | 1995-01,1995.042,360.15,0.10,359.30,0.06 195 | 1995-02,1995.125,360.63,0.12,359.53,0.06 196 | 1995-03,1995.208,361.09,0.10,359.71,0.05 197 | 1995-04,1995.292,361.56,0.08,359.85,0.05 198 | 1995-05,1995.375,361.47,0.09,359.85,0.05 199 | 1995-06,1995.458,360.61,0.07,359.92,0.05 200 | 1995-07,1995.542,359.00,0.08,360.00,0.05 201 | 1995-08,1995.625,357.73,0.12,360.21,0.05 202 | 1995-09,1995.708,358.06,0.09,360.65,0.05 203 | 1995-10,1995.792,359.43,0.09,360.90,0.04 204 | 1995-11,1995.875,360.77,0.07,361.04,0.04 205 | 1995-12,1995.958,361.65,0.05,361.20,0.04 206 | 1996-01,1996.042,362.14,0.05,361.22,0.04 207 | 1996-02,1996.125,362.50,0.08,361.32,0.04 208 | 1996-03,1996.208,362.82,0.09,361.40,0.04 209 | 1996-04,1996.292,363.14,0.08,361.42,0.04 210 | 1996-05,1996.375,363.29,0.09,361.68,0.04 211 | 1996-06,1996.458,362.88,0.07,362.23,0.04 212 | 1996-07,1996.542,361.57,0.07,362.61,0.04 213 | 1996-08,1996.625,360.07,0.08,362.58,0.04 214 | 1996-09,1996.708,359.70,0.08,362.31,0.04 215 | 1996-10,1996.792,360.67,0.07,362.15,0.04 216 | 1996-11,1996.875,361.78,0.06,362.09,0.04 217 | 1996-12,1996.958,362.63,0.05,362.19,0.04 218 | 1997-01,1997.042,363.28,0.05,362.34,0.04 219 | 1997-02,1997.125,363.65,0.09,362.46,0.04 220 | 1997-03,1997.208,364.03,0.10,362.62,0.04 221 | 1997-04,1997.292,364.50,0.10,362.81,0.04 222 | 1997-05,1997.375,364.51,0.09,362.94,0.04 223 | 1997-06,1997.458,363.60,0.07,362.97,0.04 224 | 1997-07,1997.542,361.93,0.10,362.96,0.05 225 | 1997-08,1997.625,360.41,0.10,362.90,0.05 226 | 1997-09,1997.708,360.41,0.06,363.01,0.05 227 | 1997-10,1997.792,361.94,0.05,363.42,0.05 228 | 1997-11,1997.875,363.61,0.07,363.89,0.05 229 | 1997-12,1997.958,364.68,0.08,364.22,0.05 230 | 1998-01,1998.042,365.19,0.08,364.26,0.05 231 | 1998-02,1998.125,365.46,0.11,364.30,0.05 232 | 1998-03,1998.208,365.93,0.11,364.53,0.05 233 | 1998-04,1998.292,366.58,0.08,364.91,0.05 234 | 1998-05,1998.375,366.86,0.07,365.33,0.04 235 | 1998-06,1998.458,366.26,0.06,365.68,0.04 236 | 1998-07,1998.542,364.84,0.09,365.88,0.04 237 | 1998-08,1998.625,363.79,0.10,366.28,0.04 238 | 1998-09,1998.708,364.03,0.06,366.61,0.05 239 | 1998-10,1998.792,365.34,0.07,366.78,0.05 240 | 1998-11,1998.875,366.60,0.07,366.85,0.05 241 | 1998-12,1998.958,367.47,0.06,366.97,0.05 242 | 1999-01,1999.042,368.12,0.10,367.18,0.05 243 | 1999-02,1999.125,368.52,0.14,367.37,0.05 244 | 1999-03,1999.208,368.91,0.11,367.53,0.06 245 | 1999-04,1999.292,369.30,0.10,367.65,0.06 246 | 1999-05,1999.375,369.21,0.11,367.71,0.06 247 | 1999-06,1999.458,368.36,0.09,367.80,0.06 248 | 1999-07,1999.542,366.69,0.12,367.74,0.06 249 | 1999-08,1999.625,365.33,0.15,367.78,0.07 250 | 1999-09,1999.708,365.44,0.11,367.99,0.07 251 | 1999-10,1999.792,366.75,0.09,368.18,0.07 252 | 1999-11,1999.875,368.05,0.09,368.28,0.07 253 | 1999-12,1999.958,368.88,0.09,368.36,0.07 254 | 2000-01,2000.042,369.41,0.12,368.49,0.07 255 | 2000-02,2000.125,369.68,0.14,368.54,0.07 256 | 2000-03,2000.208,369.99,0.13,368.59,0.07 257 | 2000-04,2000.292,370.36,0.12,368.69,0.07 258 | 2000-05,2000.375,370.24,0.10,368.73,0.06 259 | 2000-06,2000.458,369.30,0.08,368.78,0.06 260 | 2000-07,2000.542,367.91,0.12,369.05,0.06 261 | 2000-08,2000.625,366.75,0.13,369.27,0.06 262 | 2000-09,2000.708,366.70,0.09,369.24,0.06 263 | 2000-10,2000.792,367.92,0.08,369.31,0.06 264 | 2000-11,2000.875,369.29,0.09,369.45,0.06 265 | 2000-12,2000.958,370.12,0.09,369.55,0.06 266 | 2001-01,2001.042,370.69,0.09,369.78,0.05 267 | 2001-02,2001.125,371.18,0.11,370.02,0.05 268 | 2001-03,2001.208,371.59,0.11,370.17,0.05 269 | 2001-04,2001.292,371.90,0.08,370.22,0.05 270 | 2001-05,2001.375,371.76,0.07,370.25,0.05 271 | 2001-06,2001.458,370.81,0.06,370.29,0.05 272 | 2001-07,2001.542,369.44,0.10,370.56,0.05 273 | 2001-08,2001.625,368.32,0.09,370.79,0.05 274 | 2001-09,2001.708,368.36,0.08,370.88,0.04 275 | 2001-10,2001.792,369.71,0.09,371.11,0.04 276 | 2001-11,2001.875,371.04,0.09,371.24,0.05 277 | 2001-12,2001.958,371.97,0.10,371.45,0.05 278 | 2002-01,2002.042,372.53,0.07,371.57,0.05 279 | 2002-02,2002.125,372.92,0.07,371.66,0.05 280 | 2002-03,2002.208,373.37,0.09,371.86,0.05 281 | 2002-04,2002.292,373.72,0.09,371.95,0.05 282 | 2002-05,2002.375,373.70,0.07,372.14,0.04 283 | 2002-06,2002.458,372.84,0.06,372.31,0.04 284 | 2002-07,2002.542,371.41,0.07,372.55,0.04 285 | 2002-08,2002.625,370.37,0.07,372.91,0.04 286 | 2002-09,2002.708,370.69,0.08,373.30,0.04 287 | 2002-10,2002.792,371.96,0.08,373.44,0.04 288 | 2002-11,2002.875,373.29,0.07,373.58,0.04 289 | 2002-12,2002.958,374.27,0.09,373.81,0.04 290 | 2003-01,2003.042,374.95,0.08,373.95,0.04 291 | 2003-02,2003.125,375.48,0.09,374.15,0.04 292 | 2003-03,2003.208,375.92,0.08,374.36,0.04 293 | 2003-04,2003.292,376.39,0.07,374.59,0.04 294 | 2003-05,2003.375,376.51,0.10,374.93,0.04 295 | 2003-06,2003.458,375.68,0.08,375.14,0.04 296 | 2003-07,2003.542,374.16,0.07,375.31,0.04 297 | 2003-08,2003.625,372.93,0.11,375.51,0.04 298 | 2003-09,2003.708,373.11,0.09,375.78,0.04 299 | 2003-10,2003.792,374.40,0.09,375.92,0.04 300 | 2003-11,2003.875,375.68,0.09,376.02,0.04 301 | 2003-12,2003.958,376.53,0.08,376.09,0.05 302 | 2004-01,2004.042,377.21,0.07,376.23,0.05 303 | 2004-02,2004.125,377.73,0.09,376.42,0.05 304 | 2004-03,2004.208,378.16,0.08,376.57,0.05 305 | 2004-04,2004.292,378.47,0.08,376.69,0.05 306 | 2004-05,2004.375,378.40,0.10,376.82,0.05 307 | 2004-06,2004.458,377.51,0.07,376.96,0.05 308 | 2004-07,2004.542,375.96,0.08,377.15,0.06 309 | 2004-08,2004.625,374.49,0.12,377.13,0.06 310 | 2004-09,2004.708,374.39,0.10,377.05,0.06 311 | 2004-10,2004.792,375.73,0.08,377.22,0.05 312 | 2004-11,2004.875,377.20,0.10,377.49,0.05 313 | 2004-12,2004.958,378.17,0.09,377.68,0.05 314 | 2005-01,2005.042,378.73,0.09,377.75,0.05 315 | 2005-02,2005.125,379.19,0.11,377.87,0.05 316 | 2005-03,2005.208,379.81,0.10,378.22,0.05 317 | 2005-04,2005.292,380.30,0.07,378.50,0.05 318 | 2005-05,2005.375,380.42,0.08,378.81,0.04 319 | 2005-06,2005.458,379.60,0.07,379.01,0.04 320 | 2005-07,2005.542,377.94,0.09,379.11,0.04 321 | 2005-08,2005.625,376.73,0.12,379.36,0.04 322 | 2005-09,2005.708,376.78,0.08,379.47,0.04 323 | 2005-10,2005.792,378.09,0.10,379.65,0.04 324 | 2005-11,2005.875,379.54,0.12,379.86,0.05 325 | 2005-12,2005.958,380.52,0.11,380.04,0.05 326 | 2006-01,2006.042,381.33,0.06,380.32,0.05 327 | 2006-02,2006.125,381.95,0.07,380.58,0.05 328 | 2006-03,2006.208,382.33,0.09,380.70,0.05 329 | 2006-04,2006.292,382.65,0.09,380.82,0.05 330 | 2006-05,2006.375,382.61,0.09,380.96,0.05 331 | 2006-06,2006.458,381.74,0.08,381.14,0.05 332 | 2006-07,2006.542,380.07,0.07,381.27,0.05 333 | 2006-08,2006.625,378.50,0.10,381.21,0.05 334 | 2006-09,2006.708,378.62,0.09,381.38,0.05 335 | 2006-10,2006.792,380.05,0.10,381.63,0.05 336 | 2006-11,2006.875,381.42,0.08,381.74,0.05 337 | 2006-12,2006.958,382.38,0.06,381.90,0.05 338 | 2007-01,2007.042,383.03,0.08,382.00,0.05 339 | 2007-02,2007.125,383.55,0.10,382.14,0.05 340 | 2007-03,2007.208,384.02,0.11,382.36,0.05 341 | 2007-04,2007.292,384.28,0.08,382.45,0.05 342 | 2007-05,2007.375,384.13,0.06,382.50,0.05 343 | 2007-06,2007.458,383.26,0.06,382.69,0.05 344 | 2007-07,2007.542,381.55,0.09,382.81,0.05 345 | 2007-08,2007.625,380.29,0.09,383.05,0.05 346 | 2007-09,2007.708,380.68,0.08,383.46,0.05 347 | 2007-10,2007.792,382.10,0.09,383.65,0.05 348 | 2007-11,2007.875,383.45,0.08,383.73,0.05 349 | 2007-12,2007.958,384.46,0.07,383.96,0.04 350 | 2008-01,2008.042,385.23,0.07,384.21,0.04 351 | 2008-02,2008.125,385.75,0.08,384.37,0.04 352 | 2008-03,2008.208,386.15,0.07,384.52,0.04 353 | 2008-04,2008.292,386.53,0.07,384.73,0.04 354 | 2008-05,2008.375,386.48,0.09,384.85,0.04 355 | 2008-06,2008.458,385.57,0.06,385.01,0.04 356 | 2008-07,2008.542,384.09,0.09,385.41,0.04 357 | 2008-08,2008.625,382.77,0.10,385.57,0.04 358 | 2008-09,2008.708,382.54,0.06,385.28,0.04 359 | 2008-10,2008.792,383.67,0.07,385.15,0.04 360 | 2008-11,2008.875,385.18,0.06,385.40,0.04 361 | 2008-12,2008.958,386.27,0.06,385.73,0.04 362 | 2009-01,2009.042,387.03,0.07,385.98,0.04 363 | 2009-02,2009.125,387.48,0.08,386.06,0.04 364 | 2009-03,2009.208,387.71,0.09,386.04,0.04 365 | 2009-04,2009.292,387.99,0.08,386.18,0.04 366 | 2009-05,2009.375,387.95,0.06,386.35,0.04 367 | 2009-06,2009.458,386.96,0.04,386.46,0.04 368 | 2009-07,2009.542,385.02,0.15,386.43,0.03 369 | 2009-08,2009.625,383.63,0.15,386.49,0.03 370 | 2009-09,2009.708,383.93,0.09,386.66,0.03 371 | 2009-10,2009.792,385.49,0.11,386.91,0.03 372 | 2009-11,2009.875,386.94,0.09,387.12,0.04 373 | 2009-12,2009.958,387.84,0.08,387.28,0.04 374 | 2010-01,2010.042,388.62,0.08,387.61,0.04 375 | 2010-02,2010.125,389.33,0.11,387.94,0.05 376 | 2010-03,2010.208,389.68,0.11,388.03,0.05 377 | 2010-04,2010.292,389.98,0.13,388.17,0.06 378 | 2010-05,2010.375,389.95,0.16,388.35,0.06 379 | 2010-06,2010.458,389.01,0.11,388.51,0.06 380 | 2010-07,2010.542,387.35,0.14,388.74,0.06 381 | 2010-08,2010.625,386.23,0.11,389.04,0.06 382 | 2010-09,2010.708,386.70,0.10,389.40,0.06 383 | 2010-10,2010.792,388.25,0.11,389.67,0.06 384 | 2010-11,2010.875,389.61,0.13,389.80,0.06 385 | 2010-12,2010.958,390.34,0.10,389.79,0.05 386 | 2011-01,2011.042,390.85,0.08,389.82,0.05 387 | 2011-02,2011.125,391.28,0.08,389.86,0.05 388 | 2011-03,2011.208,391.67,0.09,390.03,0.05 389 | 2011-04,2011.292,392.05,0.10,390.23,0.05 390 | 2011-05,2011.375,392.07,0.10,390.45,0.05 391 | 2011-06,2011.458,391.13,0.07,390.63,0.05 392 | 2011-07,2011.542,389.19,0.17,390.56,0.05 393 | 2011-08,2011.625,387.86,0.15,390.64,0.05 394 | 2011-09,2011.708,388.26,0.13,390.98,0.05 395 | 2011-10,2011.792,389.83,0.14,391.29,0.05 396 | 2011-11,2011.875,391.20,0.11,391.42,0.05 397 | 2011-12,2011.958,392.04,0.10,391.53,0.06 398 | 2012-01,2012.042,392.61,0.10,391.56,0.06 399 | 2012-02,2012.125,393.20,0.15,391.79,0.06 400 | 2012-03,2012.208,393.72,0.14,392.08,0.06 401 | 2012-04,2012.292,393.99,0.11,392.19,0.07 402 | 2012-05,2012.375,393.88,0.10,392.27,0.07 403 | 2012-06,2012.458,392.84,0.07,392.36,0.07 404 | 2012-07,2012.542,391.00,0.13,392.42,0.07 405 | 2012-08,2012.625,389.89,0.16,392.73,0.07 406 | 2012-09,2012.708,390.55,0.12,393.26,0.07 407 | 2012-10,2012.792,392.16,0.14,393.59,0.06 408 | 2012-11,2012.875,393.56,0.12,393.73,0.06 409 | 2012-12,2012.958,394.39,0.09,393.82,0.06 410 | 2013-01,2013.042,395.07,0.09,394.09,0.06 411 | 2013-02,2013.125,395.69,0.13,394.33,0.06 412 | 2013-03,2013.208,396.28,0.11,394.65,0.05 413 | 2013-04,2013.292,396.74,0.09,394.93,0.06 414 | 2013-05,2013.375,396.75,0.11,395.13,0.06 415 | 2013-06,2013.458,395.96,0.09,395.44,0.06 416 | 2013-07,2013.542,394.47,0.20,395.83,0.06 417 | 2013-08,2013.625,393.24,0.14,396.01,0.06 418 | 2013-09,2013.708,393.20,0.11,395.88,0.06 419 | 2013-10,2013.792,394.50,0.12,395.92,0.06 420 | 2013-11,2013.875,395.95,0.10,396.14,0.05 421 | 2013-12,2013.958,396.87,0.08,396.34,0.05 422 | 2014-01,2014.042,397.51,0.08,396.45,0.05 423 | 2014-02,2014.125,397.97,0.07,396.54,0.05 424 | 2014-03,2014.208,398.27,0.06,396.60,0.05 425 | 2014-04,2014.292,398.63,0.06,396.77,0.05 426 | 2014-05,2014.375,398.69,0.06,397.03,0.05 427 | 2014-06,2014.458,397.72,0.09,397.16,0.05 428 | 2014-07,2014.542,396.13,0.14,397.45,0.05 429 | 2014-08,2014.625,395.02,0.15,397.83,0.05 430 | 2014-09,2014.708,395.12,0.12,397.89,0.06 431 | 2014-10,2014.792,396.38,0.12,397.91,0.06 432 | 2014-11,2014.875,397.86,0.09,398.16,0.05 433 | 2014-12,2014.958,398.83,0.08,398.34,0.05 434 | 2015-01,2015.042,399.56,0.07,398.52,0.05 435 | 2015-02,2015.125,400.12,0.07,398.68,0.05 436 | 2015-03,2015.208,400.57,0.07,398.86,0.05 437 | 2015-04,2015.292,400.96,0.07,399.08,0.05 438 | 2015-05,2015.375,400.91,0.10,399.27,0.05 439 | 2015-06,2015.458,400.06,0.09,399.50,0.05 440 | 2015-07,2015.542,398.38,0.10,399.66,0.05 441 | 2015-08,2015.625,397.07,0.14,399.85,0.05 442 | 2015-09,2015.708,397.34,0.09,400.14,0.06 443 | 2015-10,2015.792,398.80,0.12,400.37,0.06 444 | 2015-11,2015.875,400.36,0.12,400.68,0.06 445 | 2015-12,2015.958,401.66,0.10,401.18,0.06 446 | 2016-01,2016.042,402.64,0.07,401.62,0.06 447 | 2016-02,2016.125,403.27,0.08,401.88,0.07 448 | 2016-03,2016.208,403.86,0.06,402.20,0.07 449 | 2016-04,2016.292,404.39,0.06,402.53,0.07 450 | 2016-05,2016.375,404.45,0.10,402.80,0.07 451 | 2016-06,2016.458,403.66,0.11,403.06,0.08 452 | 2016-07,2016.542,402.11,0.09,403.32,0.08 453 | 2016-08,2016.625,400.80,0.11,403.54,0.08 454 | 2016-09,2016.708,400.99,0.12,403.79,0.08 455 | 2016-10,2016.792,402.42,0.11,404.02,0.08 456 | 2016-11,2016.875,403.78,0.11,404.11,0.08 457 | 2016-12,2016.958,404.69,0.10,404.21,0.08 458 | 2017-01,2017.042,405.33,0.09,404.24,0.08 459 | 2017-02,2017.125,405.91,0.10,404.47,0.08 460 | 2017-03,2017.208,406.32,0.09,404.63,0.08 461 | 2017-04,2017.292,406.60,0.12,404.73,0.08 462 | 2017-05,2017.375,406.64,0.16,404.99,0.08 463 | 2017-06,2017.458,405.85,0.12,405.28,0.08 464 | 2017-07,2017.542,404.11,0.09,405.38,0.07 465 | 2017-08,2017.625,402.57,0.16,405.39,0.07 466 | 2017-09,2017.708,402.66,0.16,405.50,0.07 467 | 2017-10,2017.792,404.16,0.10,405.74,0.07 468 | 2017-11,2017.875,405.70,0.09,406.00,0.07 469 | 2017-12,2017.958,406.75,0.08,406.24,0.08 470 | 2018-01,2018.042,407.56,0.11,406.51,0.08 471 | 2018-02,2018.125,408.23,0.11,406.85,0.08 472 | 2018-03,2018.208,408.77,0.10,407.11,0.08 473 | 2018-04,2018.292,409.08,0.08,407.25,0.08 474 | 2018-05,2018.375,408.94,0.10,407.31,0.08 475 | 2018-06,2018.458,408.06,0.09,407.46,0.08 476 | 2018-07,2018.542,406.47,0.09,407.75,0.08 477 | 2018-08,2018.625,405.10,0.14,407.94,0.08 478 | 2018-09,2018.708,405.17,0.12,408.01,0.08 479 | 2018-10,2018.792,406.65,0.10,408.20,0.08 480 | 2018-11,2018.875,408.13,0.10,408.34,0.08 481 | 2018-12,2018.958,409.18,0.10,408.59,0.08 482 | 2019-01,2019.042,409.92,0.12,408.90,0.08 483 | 2019-02,2019.125,410.34,0.12,408.99,0.08 484 | 2019-03,2019.208,410.89,0.12,409.24,0.08 485 | 2019-04,2019.292,411.33,0.11,409.50,0.08 486 | 2019-05,2019.375,411.34,0.09,409.70,0.08 487 | 2019-06,2019.458,410.53,0.08,409.95,0.08 488 | 2019-07,2019.542,408.88,0.13,410.17,0.08 489 | 2019-08,2019.625,407.64,0.14,410.48,0.08 490 | 2019-09,2019.708,407.92,0.12,410.76,0.08 491 | 2019-10,2019.792,409.44,0.12,410.97,0.08 492 | 2019-11,2019.875,410.87,0.11,411.04,0.07 493 | 2019-12,2019.958,411.76,0.10,411.15,0.07 494 | 2020-01,2020.042,412.43,0.09,411.34,0.07 495 | 2020-02,2020.125,412.95,0.11,411.58,0.07 496 | 2020-03,2020.208,413.44,0.11,411.81,0.07 497 | 2020-04,2020.292,413.86,0.10,412.05,0.07 498 | 2020-05,2020.375,413.81,0.09,412.19,0.07 499 | 2020-06,2020.458,412.88,0.11,412.35,0.07 500 | 2020-07,2020.542,411.17,0.11,412.52,0.07 501 | 2020-08,2020.625,409.73,0.14,412.62,0.07 502 | 2020-09,2020.708,410.00,0.15,412.85,0.07 503 | 2020-10,2020.792,411.66,0.15,413.18,0.07 504 | 2020-11,2020.875,413.25,0.12,413.38,0.07 505 | 2020-12,2020.958,414.14,0.09,413.46,0.07 506 | 2021-01,2021.042,414.74,0.11,413.68,0.07 507 | 2021-02,2021.125,415.20,0.13,413.90,0.07 508 | 2021-03,2021.208,415.49,0.12,413.90,0.07 509 | 2021-04,2021.292,415.81,0.12,414.02,0.06 510 | 2021-05,2021.375,416.01,0.12,414.41,0.07 511 | 2021-06,2021.458,415.20,0.07,414.69,0.07 512 | 2021-07,2021.542,413.45,0.09,414.82,0.07 513 | 2021-08,2021.625,412.15,0.08,415.03,0.07 514 | 2021-09,2021.708,412.38,0.07,415.21,0.07 515 | 2021-10,2021.792,413.83,0.08,415.30,0.07 516 | 2021-11,2021.875,415.58,0.12,415.62,0.07 517 | 2021-12,2021.958,416.60,0.12,415.86,0.07 518 | 2022-01,2022.042,417.18,0.10,416.01,0.07 519 | 2022-02,2022.125,417.64,0.13,416.25,0.07 520 | 2022-03,2022.208,418.16,0.14,416.57,0.07 521 | 2022-04,2022.292,418.58,0.14,416.79,0.07 522 | 2022-05,2022.375,418.45,0.18,416.85,0.07 523 | 2022-06,2022.458,417.43,0.13,416.91,0.08 524 | 2022-07,2022.542,415.67,0.13,417.03,0.08 525 | 2022-08,2022.625,414.40,0.14,417.31,0.08 526 | 2022-09,2022.708,414.62,0.14,417.49,0.08 527 | 2022-10,2022.792,416.13,0.18,417.64,0.08 528 | 2022-11,2022.875,417.84,0.16,417.97,0.09 529 | 2022-12,2022.958,418.92,0.14,418.21,0.09 530 | 2023-01,2023.042,419.38,0.12,418.21,0.09 531 | 2023-02,2023.125,419.65,0.10,418.26,0.10 532 | 2023-03,2023.208,419.98,0.14,418.40,0.10 533 | 2023-04,2023.292,420.50,0.18,418.70,0.10 534 | 2023-05,2023.375,420.57,0.19,418.98,0.10 535 | 2023-06,2023.458,419.58,0.15,419.06,0.11 536 | 2023-07,2023.542,417.92,0.08,419.28,0.11 537 | 2023-08,2023.625,416.77,0.13,419.68,0.11 538 | 2023-09,2023.708,417.17,0.17,420.04,0.11 539 | 2023-10,2023.792,418.84,0.20,420.35,0.11 540 | 2023-11,2023.875,420.40,0.16,420.52,0.11 541 | 2023-12,2023.958,421.51,0.14,420.79,0.11 542 | 2024-01,2024.042,422.25,0.13,421.08,0.11 543 | 2024-02,2024.125,422.81,0.10,421.42,0.06 544 | 2024-03,2024.208,423.39,0.10,421.80,0.06 545 | 2024-04,2024.292,423.87,0.10,422.08,0.06 546 | 2024-05,2024.375,423.94,0.10,422.34,0.06 547 | 2024-06,2024.458,423.22,0.10,422.70,0.06 548 | 2024-07,2024.542,421.59,0.10,422.95,0.06 549 | 2024-08,2024.625,420.21,0.10,423.12,0.06 550 | 2024-09,2024.708,420.54,0.10,423.41,0.06 551 | 2024-10,2024.792,422.34,0.10,423.85,0.06 552 | 2024-11,2024.875,424.06,0.10,424.18,0.06 553 | 2024-12,2024.958,425.26,0.10,424.54,0.06 554 | 2025-01,2025.042,426.05,0.10,424.89,0.06 555 | 2025-02,2025.125,426.13,0.10,424.74,0.06 556 | -------------------------------------------------------------------------------- /data/co2-mm-mlo.csv: -------------------------------------------------------------------------------- 1 | Date,Decimal Date,Average,Interpolated,Trend,Number of Days 2 | 1958-03,1958.2027,315.71,314.44,-01,-9.99,-0.99 3 | 1958-04,1958.2877,317.45,315.16,-01,-9.99,-0.99 4 | 1958-05,1958.3699,317.51,314.69,-01,-9.99,-0.99 5 | 1958-06,1958.4548,317.27,315.15,-01,-9.99,-0.99 6 | 1958-07,1958.5370,315.87,315.20,-01,-9.99,-0.99 7 | 1958-08,1958.6219,314.93,316.21,-01,-9.99,-0.99 8 | 1958-09,1958.7068,313.21,316.11,-01,-9.99,-0.99 9 | 1958-10,1958.7890,312.42,315.41,-01,-9.99,-0.99 10 | 1958-11,1958.8740,313.33,315.21,-01,-9.99,-0.99 11 | 1958-12,1958.9562,314.67,315.43,-01,-9.99,-0.99 12 | 1959-01,1959.0411,315.58,315.52,-01,-9.99,-0.99 13 | 1959-02,1959.1260,316.49,315.84,-01,-9.99,-0.99 14 | 1959-03,1959.2027,316.65,315.37,-01,-9.99,-0.99 15 | 1959-04,1959.2877,317.72,315.42,-01,-9.99,-0.99 16 | 1959-05,1959.3699,318.29,315.46,-01,-9.99,-0.99 17 | 1959-06,1959.4548,318.15,316.00,-01,-9.99,-0.99 18 | 1959-07,1959.5370,316.54,315.87,-01,-9.99,-0.99 19 | 1959-08,1959.6219,314.80,316.09,-01,-9.99,-0.99 20 | 1959-09,1959.7068,313.84,316.75,-01,-9.99,-0.99 21 | 1959-10,1959.7890,313.33,316.34,-01,-9.99,-0.99 22 | 1959-11,1959.8740,314.81,316.69,-01,-9.99,-0.99 23 | 1959-12,1959.9562,315.58,316.35,-01,-9.99,-0.99 24 | 1960-01,1960.0410,316.43,316.38,-01,-9.99,-0.99 25 | 1960-02,1960.1257,316.98,316.33,-01,-9.99,-0.99 26 | 1960-03,1960.2049,317.58,316.27,-01,-9.99,-0.99 27 | 1960-04,1960.2896,319.03,316.70,-01,-9.99,-0.99 28 | 1960-05,1960.3716,320.03,317.19,-01,-9.99,-0.99 29 | 1960-06,1960.4563,319.58,317.45,-01,-9.99,-0.99 30 | 1960-07,1960.5383,318.18,317.54,-01,-9.99,-0.99 31 | 1960-08,1960.6230,315.90,317.22,-01,-9.99,-0.99 32 | 1960-09,1960.7077,314.17,317.10,-01,-9.99,-0.99 33 | 1960-10,1960.7896,313.83,316.85,-01,-9.99,-0.99 34 | 1960-11,1960.8743,315.00,316.89,-01,-9.99,-0.99 35 | 1960-12,1960.9563,316.19,316.96,-01,-9.99,-0.99 36 | 1961-01,1961.0411,316.89,316.84,-01,-9.99,-0.99 37 | 1961-02,1961.1260,317.70,317.05,-01,-9.99,-0.99 38 | 1961-03,1961.2027,318.54,317.25,-01,-9.99,-0.99 39 | 1961-04,1961.2877,319.48,317.16,-01,-9.99,-0.99 40 | 1961-05,1961.3699,320.58,317.73,-01,-9.99,-0.99 41 | 1961-06,1961.4548,319.77,317.61,-01,-9.99,-0.99 42 | 1961-07,1961.5370,318.56,317.89,-01,-9.99,-0.99 43 | 1961-08,1961.6219,316.79,318.09,-01,-9.99,-0.99 44 | 1961-09,1961.7068,314.99,317.92,-01,-9.99,-0.99 45 | 1961-10,1961.7890,315.31,318.34,-01,-9.99,-0.99 46 | 1961-11,1961.8740,316.10,318.00,-01,-9.99,-0.99 47 | 1961-12,1961.9562,317.01,317.78,-01,-9.99,-0.99 48 | 1962-01,1962.0411,317.94,317.89,-01,-9.99,-0.99 49 | 1962-02,1962.1260,318.55,317.89,-01,-9.99,-0.99 50 | 1962-03,1962.2027,319.68,318.39,-01,-9.99,-0.99 51 | 1962-04,1962.2877,320.57,318.24,-01,-9.99,-0.99 52 | 1962-05,1962.3699,321.02,318.16,-01,-9.99,-0.99 53 | 1962-06,1962.4548,320.62,318.45,-01,-9.99,-0.99 54 | 1962-07,1962.5370,319.61,318.94,-01,-9.99,-0.99 55 | 1962-08,1962.6219,317.40,318.71,-01,-9.99,-0.99 56 | 1962-09,1962.7068,316.24,319.18,-01,-9.99,-0.99 57 | 1962-10,1962.7890,315.42,318.46,-01,-9.99,-0.99 58 | 1962-11,1962.8740,316.69,318.59,-01,-9.99,-0.99 59 | 1962-12,1962.9562,317.70,318.47,-01,-9.99,-0.99 60 | 1963-01,1963.0411,318.74,318.69,-01,-9.99,-0.99 61 | 1963-02,1963.1260,319.07,318.41,-01,-9.99,-0.99 62 | 1963-03,1963.2027,319.86,318.57,-01,-9.99,-0.99 63 | 1963-04,1963.2877,321.38,319.05,-01,-9.99,-0.99 64 | 1963-05,1963.3699,322.24,319.38,-01,-9.99,-0.99 65 | 1963-06,1963.4548,321.49,319.31,-01,-9.99,-0.99 66 | 1963-07,1963.5370,319.74,319.07,-01,-9.99,-0.99 67 | 1963-08,1963.6219,317.77,319.07,-01,-9.99,-0.99 68 | 1963-09,1963.7068,316.21,319.16,-01,-9.99,-0.99 69 | 1963-10,1963.7890,315.99,319.03,-01,-9.99,-0.99 70 | 1963-11,1963.8740,317.07,318.98,-01,-9.99,-0.99 71 | 1963-12,1963.9562,318.35,319.13,-01,-9.99,-0.99 72 | 1964-01,1964.0410,319.57,319.52,-01,-9.99,-0.99 73 | 1964-02,1964.1257,320.04,319.37,-01,-9.99,-0.99 74 | 1964-03,1964.2049,320.75,319.41,-01,-9.99,-0.99 75 | 1964-04,1964.2896,321.84,319.46,-01,-9.99,-0.99 76 | 1964-05,1964.3716,322.25,319.37,-01,-9.99,-0.99 77 | 1964-06,1964.4563,321.89,319.73,-01,-9.99,-0.99 78 | 1964-07,1964.5383,320.44,319.79,-01,-9.99,-0.99 79 | 1964-08,1964.6230,318.69,320.03,-01,-9.99,-0.99 80 | 1964-09,1964.7077,316.71,319.67,-01,-9.99,-0.99 81 | 1964-10,1964.7896,316.87,319.93,-01,-9.99,-0.99 82 | 1964-11,1964.8743,317.68,319.59,-01,-9.99,-0.99 83 | 1964-12,1964.9563,318.71,319.49,-01,-9.99,-0.99 84 | 1965-01,1965.0411,319.44,319.38,-01,-9.99,-0.99 85 | 1965-02,1965.1260,320.44,319.79,-01,-9.99,-0.99 86 | 1965-03,1965.2027,320.89,319.59,-01,-9.99,-0.99 87 | 1965-04,1965.2877,322.14,319.79,-01,-9.99,-0.99 88 | 1965-05,1965.3699,322.17,319.28,-01,-9.99,-0.99 89 | 1965-06,1965.4548,321.87,319.68,-01,-9.99,-0.99 90 | 1965-07,1965.5370,321.21,320.53,-01,-9.99,-0.99 91 | 1965-08,1965.6219,318.87,320.18,-01,-9.99,-0.99 92 | 1965-09,1965.7068,317.82,320.78,-01,-9.99,-0.99 93 | 1965-10,1965.7890,317.30,320.37,-01,-9.99,-0.99 94 | 1965-11,1965.8740,318.87,320.79,-01,-9.99,-0.99 95 | 1965-12,1965.9562,319.42,320.20,-01,-9.99,-0.99 96 | 1966-01,1966.0411,320.62,320.57,-01,-9.99,-0.99 97 | 1966-02,1966.1260,321.60,320.94,-01,-9.99,-0.99 98 | 1966-03,1966.2027,322.39,321.08,-01,-9.99,-0.99 99 | 1966-04,1966.2877,323.70,321.34,-01,-9.99,-0.99 100 | 1966-05,1966.3699,324.08,321.18,-01,-9.99,-0.99 101 | 1966-06,1966.4548,323.75,321.55,-01,-9.99,-0.99 102 | 1966-07,1966.5370,322.37,321.69,-01,-9.99,-0.99 103 | 1966-08,1966.6219,320.36,321.68,-01,-9.99,-0.99 104 | 1966-09,1966.7068,318.64,321.61,-01,-9.99,-0.99 105 | 1966-10,1966.7890,318.10,321.18,-01,-9.99,-0.99 106 | 1966-11,1966.8740,319.78,321.71,-01,-9.99,-0.99 107 | 1966-12,1966.9562,321.02,321.81,-01,-9.99,-0.99 108 | 1967-01,1967.0411,322.33,322.28,-01,-9.99,-0.99 109 | 1967-02,1967.1260,322.50,321.83,-01,-9.99,-0.99 110 | 1967-03,1967.2027,323.03,321.72,-01,-9.99,-0.99 111 | 1967-04,1967.2877,324.41,322.05,-01,-9.99,-0.99 112 | 1967-05,1967.3699,325.00,322.09,-01,-9.99,-0.99 113 | 1967-06,1967.4548,324.09,321.89,-01,-9.99,-0.99 114 | 1967-07,1967.5370,322.54,321.86,-01,-9.99,-0.99 115 | 1967-08,1967.6219,320.92,322.24,-01,-9.99,-0.99 116 | 1967-09,1967.7068,319.25,322.24,-01,-9.99,-0.99 117 | 1967-10,1967.7890,319.39,322.48,-01,-9.99,-0.99 118 | 1967-11,1967.8740,320.73,322.66,-01,-9.99,-0.99 119 | 1967-12,1967.9562,321.96,322.74,-01,-9.99,-0.99 120 | 1968-01,1968.0410,322.57,322.51,-01,-9.99,-0.99 121 | 1968-02,1968.1257,323.15,322.48,-01,-9.99,-0.99 122 | 1968-03,1968.2049,323.89,322.55,-01,-9.99,-0.99 123 | 1968-04,1968.2896,325.02,322.63,-01,-9.99,-0.99 124 | 1968-05,1968.3716,325.57,322.66,-01,-9.99,-0.99 125 | 1968-06,1968.4563,325.36,323.17,-01,-9.99,-0.99 126 | 1968-07,1968.5383,324.14,323.48,-01,-9.99,-0.99 127 | 1968-08,1968.6230,322.11,323.46,-01,-9.99,-0.99 128 | 1968-09,1968.7077,320.33,323.33,-01,-9.99,-0.99 129 | 1968-10,1968.7896,320.25,323.34,-01,-9.99,-0.99 130 | 1968-11,1968.8743,321.32,323.26,-01,-9.99,-0.99 131 | 1968-12,1968.9563,322.89,323.68,-01,-9.99,-0.99 132 | 1969-01,1969.0411,324.00,323.95,-01,-9.99,-0.99 133 | 1969-02,1969.1260,324.41,323.75,-01,-9.99,-0.99 134 | 1969-03,1969.2027,325.63,324.31,-01,-9.99,-0.99 135 | 1969-04,1969.2877,326.66,324.28,-01,-9.99,-0.99 136 | 1969-05,1969.3699,327.38,324.46,-01,-9.99,-0.99 137 | 1969-06,1969.4548,326.71,324.49,-01,-9.99,-0.99 138 | 1969-07,1969.5370,325.88,325.19,-01,-9.99,-0.99 139 | 1969-08,1969.6219,323.66,324.99,-01,-9.99,-0.99 140 | 1969-09,1969.7068,322.38,325.38,-01,-9.99,-0.99 141 | 1969-10,1969.7890,321.78,324.89,-01,-9.99,-0.99 142 | 1969-11,1969.8740,322.85,324.80,-01,-9.99,-0.99 143 | 1969-12,1969.9562,324.11,324.91,-01,-9.99,-0.99 144 | 1970-01,1970.0411,325.06,325.01,-01,-9.99,-0.99 145 | 1970-02,1970.1260,325.99,325.31,-01,-9.99,-0.99 146 | 1970-03,1970.2027,326.93,325.61,-01,-9.99,-0.99 147 | 1970-04,1970.2877,328.13,325.75,-01,-9.99,-0.99 148 | 1970-05,1970.3699,328.08,325.15,-01,-9.99,-0.99 149 | 1970-06,1970.4548,327.67,325.44,-01,-9.99,-0.99 150 | 1970-07,1970.5370,326.34,325.65,-01,-9.99,-0.99 151 | 1970-08,1970.6219,324.68,326.02,-01,-9.99,-0.99 152 | 1970-09,1970.7068,323.10,326.11,-01,-9.99,-0.99 153 | 1970-10,1970.7890,323.06,326.18,-01,-9.99,-0.99 154 | 1970-11,1970.8740,324.01,325.96,-01,-9.99,-0.99 155 | 1970-12,1970.9562,325.13,325.93,-01,-9.99,-0.99 156 | 1971-01,1971.0411,326.17,326.12,-01,-9.99,-0.99 157 | 1971-02,1971.1260,326.69,326.01,-01,-9.99,-0.99 158 | 1971-03,1971.2027,327.18,325.85,-01,-9.99,-0.99 159 | 1971-04,1971.2877,327.78,325.39,-01,-9.99,-0.99 160 | 1971-05,1971.3699,328.93,325.99,-01,-9.99,-0.99 161 | 1971-06,1971.4548,328.57,326.34,-01,-9.99,-0.99 162 | 1971-07,1971.5370,327.36,326.67,-01,-9.99,-0.99 163 | 1971-08,1971.6219,325.43,326.77,-01,-9.99,-0.99 164 | 1971-09,1971.7068,323.36,326.38,-01,-9.99,-0.99 165 | 1971-10,1971.7890,323.56,326.69,-01,-9.99,-0.99 166 | 1971-11,1971.8740,324.80,326.75,-01,-9.99,-0.99 167 | 1971-12,1971.9562,326.01,326.81,-01,-9.99,-0.99 168 | 1972-01,1972.0410,326.77,326.71,-01,-9.99,-0.99 169 | 1972-02,1972.1257,327.63,326.96,-01,-9.99,-0.99 170 | 1972-03,1972.2049,327.75,326.39,-01,-9.99,-0.99 171 | 1972-04,1972.2896,329.72,327.30,-01,-9.99,-0.99 172 | 1972-05,1972.3716,330.07,327.12,-01,-9.99,-0.99 173 | 1972-06,1972.4563,329.09,326.87,-01,-9.99,-0.99 174 | 1972-07,1972.5383,328.04,327.38,-01,-9.99,-0.99 175 | 1972-08,1972.6230,326.32,327.69,-01,-9.99,-0.99 176 | 1972-09,1972.7077,324.84,327.88,-01,-9.99,-0.99 177 | 1972-10,1972.7896,325.20,328.33,-01,-9.99,-0.99 178 | 1972-11,1972.8743,326.50,328.46,-01,-9.99,-0.99 179 | 1972-12,1972.9563,327.55,328.35,-01,-9.99,-0.99 180 | 1973-01,1973.0411,328.55,328.49,-01,-9.99,-0.99 181 | 1973-02,1973.1260,329.57,328.89,-01,-9.99,-0.99 182 | 1973-03,1973.2027,330.30,328.97,-01,-9.99,-0.99 183 | 1973-04,1973.2877,331.50,329.10,-01,-9.99,-0.99 184 | 1973-05,1973.3699,332.48,329.52,-01,-9.99,-0.99 185 | 1973-06,1973.4548,332.07,329.83,-01,-9.99,-0.99 186 | 1973-07,1973.5370,330.87,330.18,-01,-9.99,-0.99 187 | 1973-08,1973.6219,329.31,330.66,-01,-9.99,-0.99 188 | 1973-09,1973.7068,327.52,330.56,-01,-9.99,-0.99 189 | 1973-10,1973.7890,327.19,330.33,-01,-9.99,-0.99 190 | 1973-11,1973.8740,328.17,330.13,-01,-9.99,-0.99 191 | 1973-12,1973.9562,328.65,329.45,-01,-9.99,-0.99 192 | 1974-01,1974.0411,329.36,329.30,-01,-9.99,-0.99 193 | 1974-02,1974.1260,330.71,330.03,-01,-9.99,-0.99 194 | 1974-03,1974.2027,331.49,330.15,-01,-9.99,-0.99 195 | 1974-04,1974.2877,332.65,330.24,-01,-9.99,-0.99 196 | 1974-05,1974.3750,333.19,330.22,13,0.31,0.16 197 | 1974-06,1974.4583,332.20,329.79,25,0.37,0.14 198 | 1974-07,1974.5417,331.07,330.21,24,0.24,0.09 199 | 1974-08,1974.6250,329.15,330.54,26,0.31,0.12 200 | 1974-09,1974.7083,327.33,330.44,22,0.47,0.19 201 | 1974-10,1974.7917,327.28,330.53,24,0.22,0.09 202 | 1974-11,1974.8750,328.31,330.50,26,0.43,0.16 203 | 1974-12,1974.9583,329.58,330.54,29,0.29,0.10 204 | 1975-01,1975.0417,330.73,330.84,29,0.43,0.15 205 | 1975-02,1975.1250,331.46,330.85,26,0.46,0.17 206 | 1975-03,1975.2083,331.94,330.37,17,0.33,0.15 207 | 1975-04,1975.2917,333.11,330.53,23,0.59,0.24 208 | 1975-05,1975.3750,333.95,330.98,28,0.35,0.13 209 | 1975-06,1975.4583,333.42,331.01,27,0.48,0.18 210 | 1975-07,1975.5417,331.97,331.12,24,0.45,0.18 211 | 1975-08,1975.6250,329.95,331.33,24,0.47,0.18 212 | 1975-09,1975.7083,328.49,331.60,22,0.53,0.22 213 | 1975-10,1975.7917,328.36,331.61,11,0.21,0.12 214 | 1975-11,1975.8750,329.38,331.57,18,0.31,0.14 215 | 1975-12,1975.9583,330.78,331.74,-01,-9.99,0.00 216 | 1976-01,1976.0417,331.56,331.67,19,0.23,0.10 217 | 1976-02,1976.1250,332.74,332.14,22,0.49,0.20 218 | 1976-03,1976.2083,333.36,331.79,18,0.52,0.23 219 | 1976-04,1976.2917,334.74,332.16,18,0.77,0.35 220 | 1976-05,1976.3750,334.72,331.75,21,0.56,0.23 221 | 1976-06,1976.4583,333.97,331.56,15,0.21,0.10 222 | 1976-07,1976.5417,333.08,332.23,15,0.24,0.12 223 | 1976-08,1976.6250,330.68,332.07,23,0.51,0.20 224 | 1976-09,1976.7083,328.96,332.07,13,0.69,0.37 225 | 1976-10,1976.7917,328.72,331.98,19,0.57,0.25 226 | 1976-11,1976.8750,330.16,332.35,25,0.36,0.14 227 | 1976-12,1976.9583,331.62,332.59,20,0.38,0.16 228 | 1977-01,1977.0417,332.68,332.77,23,0.40,0.16 229 | 1977-02,1977.1250,333.17,332.58,20,0.34,0.15 230 | 1977-03,1977.2083,334.96,333.40,23,0.51,0.21 231 | 1977-04,1977.2917,336.14,333.54,20,0.50,0.21 232 | 1977-05,1977.3750,336.93,334.00,20,0.31,0.13 233 | 1977-06,1977.4583,336.17,333.79,22,0.40,0.16 234 | 1977-07,1977.5417,334.89,334.01,20,0.23,0.10 235 | 1977-08,1977.6250,332.56,333.91,18,0.46,0.21 236 | 1977-09,1977.7083,331.29,334.36,19,0.46,0.20 237 | 1977-10,1977.7917,331.28,334.51,23,0.29,0.12 238 | 1977-11,1977.8750,332.46,334.68,21,0.43,0.18 239 | 1977-12,1977.9583,333.60,334.58,25,0.36,0.14 240 | 1978-01,1978.0417,334.94,335.01,22,0.52,0.21 241 | 1978-02,1978.1250,335.26,334.60,25,0.50,0.19 242 | 1978-03,1978.2083,336.66,335.00,28,0.59,0.21 243 | 1978-04,1978.2917,337.69,335.07,18,0.44,0.20 244 | 1978-05,1978.3750,338.02,335.08,26,0.46,0.17 245 | 1978-06,1978.4583,338.01,335.60,17,0.31,0.15 246 | 1978-07,1978.5417,336.50,335.65,20,0.32,0.14 247 | 1978-08,1978.6250,334.42,335.87,19,0.32,0.14 248 | 1978-09,1978.7083,332.36,335.51,17,0.75,0.35 249 | 1978-10,1978.7917,332.45,335.72,21,0.34,0.14 250 | 1978-11,1978.8750,333.76,335.99,24,0.25,0.10 251 | 1978-12,1978.9583,334.91,335.87,26,0.33,0.12 252 | 1979-01,1979.0417,336.14,336.22,27,0.55,0.20 253 | 1979-02,1979.1250,336.69,336.00,25,0.30,0.11 254 | 1979-03,1979.2083,338.27,336.56,21,0.63,0.26 255 | 1979-04,1979.2917,338.82,336.11,24,0.67,0.26 256 | 1979-05,1979.3750,339.24,336.24,20,0.50,0.22 257 | 1979-06,1979.4583,339.26,336.83,19,0.35,0.15 258 | 1979-07,1979.5417,337.54,336.69,26,0.59,0.22 259 | 1979-08,1979.6250,335.72,337.20,24,0.60,0.23 260 | 1979-09,1979.7083,333.97,337.19,19,0.65,0.29 261 | 1979-10,1979.7917,334.24,337.57,25,0.42,0.16 262 | 1979-11,1979.8750,335.32,337.59,27,0.30,0.11 263 | 1979-12,1979.9583,336.81,337.83,22,0.23,0.09 264 | 1980-01,1980.0417,337.90,338.13,29,0.57,0.20 265 | 1980-02,1980.1250,338.34,337.85,26,0.49,0.18 266 | 1980-03,1980.2083,340.07,338.51,23,0.54,0.22 267 | 1980-04,1980.2917,340.93,338.31,24,0.29,0.11 268 | 1980-05,1980.3750,341.45,338.40,24,0.54,0.21 269 | 1980-06,1980.4583,341.36,338.85,20,0.39,0.17 270 | 1980-07,1980.5417,339.45,338.56,26,0.60,0.22 271 | 1980-08,1980.6250,337.67,339.07,16,1.05,0.50 272 | 1980-09,1980.7083,336.25,339.38,15,0.69,0.34 273 | 1980-10,1980.7917,336.14,339.40,26,0.26,0.10 274 | 1980-11,1980.8750,337.30,339.46,27,0.26,0.10 275 | 1980-12,1980.9583,338.29,339.26,24,0.25,0.10 276 | 1981-01,1981.0417,339.29,339.42,28,0.39,0.14 277 | 1981-02,1981.1250,340.55,339.98,25,0.65,0.25 278 | 1981-03,1981.2083,341.63,340.08,25,0.48,0.19 279 | 1981-04,1981.2917,342.60,339.98,26,0.46,0.17 280 | 1981-05,1981.3750,343.04,339.97,30,0.19,0.07 281 | 1981-06,1981.4583,342.54,340.06,25,0.29,0.11 282 | 1981-07,1981.5417,340.82,339.92,24,0.46,0.18 283 | 1981-08,1981.6250,338.48,339.87,25,0.48,0.18 284 | 1981-09,1981.7083,336.95,340.17,27,0.55,0.20 285 | 1981-10,1981.7917,337.05,340.39,25,0.39,0.15 286 | 1981-11,1981.8750,338.58,340.75,26,0.31,0.12 287 | 1981-12,1981.9583,339.91,340.85,20,0.28,0.12 288 | 1982-01,1982.0417,340.93,341.09,28,0.30,0.11 289 | 1982-02,1982.1250,341.76,341.16,24,0.49,0.19 290 | 1982-03,1982.2083,342.78,341.18,17,0.41,0.19 291 | 1982-04,1982.2917,343.96,341.32,7,0.42,0.31 292 | 1982-05,1982.3750,344.77,341.67,27,0.37,0.14 293 | 1982-06,1982.4583,343.88,341.43,27,0.37,0.14 294 | 1982-07,1982.5417,342.42,341.61,28,0.35,0.13 295 | 1982-08,1982.6250,340.24,341.64,25,0.61,0.23 296 | 1982-09,1982.7083,338.37,341.56,21,0.59,0.25 297 | 1982-10,1982.7917,338.41,341.77,26,0.50,0.19 298 | 1982-11,1982.8750,339.44,341.59,24,0.39,0.15 299 | 1982-12,1982.9583,340.78,341.71,26,0.30,0.11 300 | 1983-01,1983.0417,341.57,341.75,28,0.47,0.17 301 | 1983-02,1983.1250,342.79,342.25,24,0.37,0.15 302 | 1983-03,1983.2083,343.37,341.85,27,0.88,0.32 303 | 1983-04,1983.2917,345.40,342.76,23,0.29,0.12 304 | 1983-05,1983.3750,346.14,342.97,28,0.51,0.19 305 | 1983-06,1983.4583,345.76,343.30,20,0.30,0.13 306 | 1983-07,1983.5417,344.32,343.56,22,0.57,0.23 307 | 1983-08,1983.6250,342.51,343.89,16,0.73,0.35 308 | 1983-09,1983.7083,340.46,343.59,15,0.50,0.25 309 | 1983-10,1983.7917,340.53,343.86,20,0.31,0.13 310 | 1983-11,1983.8750,341.79,343.92,27,0.33,0.12 311 | 1983-12,1983.9583,343.20,344.12,21,0.25,0.10 312 | 1984-01,1984.0417,344.21,344.32,23,0.40,0.16 313 | 1984-02,1984.1250,344.92,344.39,23,0.32,0.13 314 | 1984-03,1984.2083,345.68,344.26,19,0.30,0.13 315 | 1984-04,1984.2917,347.38,344.75,2,-9.99,0.00 316 | 1984-05,1984.3750,347.77,344.59,20,0.42,0.18 317 | 1984-06,1984.4583,347.16,344.73,20,0.31,0.13 318 | 1984-07,1984.5417,345.79,345.02,18,0.33,0.15 319 | 1984-08,1984.6250,343.74,345.12,12,0.45,0.25 320 | 1984-09,1984.7083,341.59,344.76,14,0.72,0.37 321 | 1984-10,1984.7917,341.86,345.19,12,0.36,0.20 322 | 1984-11,1984.8750,343.31,345.41,18,0.41,0.19 323 | 1984-12,1984.9583,345.00,345.88,14,0.53,0.27 324 | 1985-01,1985.0417,345.48,345.59,25,0.38,0.14 325 | 1985-02,1985.1250,346.41,345.92,15,0.37,0.18 326 | 1985-03,1985.2083,347.91,346.56,17,0.34,0.16 327 | 1985-04,1985.2917,348.66,346.08,21,0.61,0.25 328 | 1985-05,1985.3750,349.28,346.12,20,0.51,0.22 329 | 1985-06,1985.4583,348.65,346.23,21,0.34,0.14 330 | 1985-07,1985.5417,346.90,346.08,17,0.36,0.17 331 | 1985-08,1985.6250,345.26,346.57,16,0.57,0.27 332 | 1985-09,1985.7083,343.47,346.59,24,0.57,0.22 333 | 1985-10,1985.7917,343.35,346.60,20,0.29,0.13 334 | 1985-11,1985.8750,344.73,346.82,21,0.40,0.17 335 | 1985-12,1985.9583,346.12,347.04,26,0.62,0.23 336 | 1986-01,1986.0417,346.78,346.82,25,0.31,0.12 337 | 1986-02,1986.1250,347.48,346.98,25,0.45,0.17 338 | 1986-03,1986.2083,348.25,346.93,16,0.70,0.34 339 | 1986-04,1986.2917,349.86,347.29,19,0.38,0.17 340 | 1986-05,1986.3750,350.52,347.42,18,0.31,0.14 341 | 1986-06,1986.4583,349.98,347.61,17,0.25,0.11 342 | 1986-07,1986.5417,348.25,347.43,20,0.47,0.20 343 | 1986-08,1986.6250,346.17,347.51,18,0.48,0.21 344 | 1986-09,1986.7083,345.48,348.61,17,0.63,0.29 345 | 1986-10,1986.7917,344.82,348.04,25,0.32,0.12 346 | 1986-11,1986.8750,346.22,348.28,21,0.30,0.13 347 | 1986-12,1986.9583,347.48,348.36,24,0.35,0.14 348 | 1987-01,1987.0417,348.73,348.66,25,0.46,0.17 349 | 1987-02,1987.1250,348.92,348.24,25,0.58,0.22 350 | 1987-03,1987.2083,349.81,348.39,21,0.35,0.15 351 | 1987-04,1987.2917,351.40,348.84,26,0.68,0.25 352 | 1987-05,1987.3750,352.15,349.09,28,0.37,0.13 353 | 1987-06,1987.4583,351.58,349.29,22,0.21,0.09 354 | 1987-07,1987.5417,350.21,349.51,17,0.73,0.34 355 | 1987-08,1987.6250,348.20,349.65,15,0.85,0.42 356 | 1987-09,1987.7083,346.66,349.85,23,0.61,0.24 357 | 1987-10,1987.7917,346.72,349.96,22,0.41,0.17 358 | 1987-11,1987.8750,348.08,350.15,23,0.33,0.13 359 | 1987-12,1987.9583,349.28,350.14,27,0.20,0.08 360 | 1988-01,1988.0417,350.51,350.49,24,0.21,0.08 361 | 1988-02,1988.1250,351.70,350.99,23,0.57,0.23 362 | 1988-03,1988.2083,352.50,350.99,25,0.78,0.30 363 | 1988-04,1988.2917,353.67,351.03,27,0.48,0.18 364 | 1988-05,1988.3750,354.35,351.22,28,0.37,0.13 365 | 1988-06,1988.4583,353.88,351.55,26,0.30,0.11 366 | 1988-07,1988.5417,352.80,352.16,27,0.49,0.18 367 | 1988-08,1988.6250,350.49,352.01,26,0.62,0.23 368 | 1988-09,1988.7083,348.97,352.18,26,0.47,0.18 369 | 1988-10,1988.7917,349.37,352.62,26,0.31,0.12 370 | 1988-11,1988.8750,350.42,352.53,25,0.20,0.08 371 | 1988-12,1988.9583,351.62,352.52,28,0.36,0.13 372 | 1989-01,1989.0417,353.07,352.99,28,0.45,0.16 373 | 1989-02,1989.1250,353.43,352.69,25,0.38,0.15 374 | 1989-03,1989.2083,354.08,352.60,29,0.53,0.19 375 | 1989-04,1989.2917,355.72,353.07,28,0.47,0.17 376 | 1989-05,1989.3750,355.95,352.78,27,0.49,0.18 377 | 1989-06,1989.4583,355.44,353.06,26,0.42,0.16 378 | 1989-07,1989.5417,354.05,353.38,26,0.41,0.15 379 | 1989-08,1989.6250,351.84,353.43,25,0.48,0.18 380 | 1989-09,1989.7083,350.09,353.37,24,0.69,0.27 381 | 1989-10,1989.7917,350.33,353.57,25,0.34,0.13 382 | 1989-11,1989.8750,351.55,353.68,27,0.36,0.13 383 | 1989-12,1989.9583,352.91,353.84,27,0.48,0.18 384 | 1990-01,1990.0417,353.86,353.78,25,0.34,0.13 385 | 1990-02,1990.1250,355.10,354.37,28,0.66,0.24 386 | 1990-03,1990.2083,355.75,354.26,27,0.57,0.21 387 | 1990-04,1990.2917,356.38,353.76,28,0.55,0.20 388 | 1990-05,1990.3750,357.38,354.23,28,0.30,0.11 389 | 1990-06,1990.4583,356.39,354.02,29,0.40,0.14 390 | 1990-07,1990.5417,354.89,354.24,30,0.89,0.31 391 | 1990-08,1990.6250,353.06,354.68,22,0.62,0.25 392 | 1990-09,1990.7083,351.38,354.69,27,0.72,0.26 393 | 1990-10,1990.7917,351.69,354.94,28,0.30,0.11 394 | 1990-11,1990.8750,353.14,355.18,24,0.20,0.08 395 | 1990-12,1990.9583,354.41,355.26,28,0.51,0.19 396 | 1991-01,1991.0417,354.93,354.91,28,0.51,0.18 397 | 1991-02,1991.1250,355.82,355.11,26,0.54,0.20 398 | 1991-03,1991.2083,357.33,355.79,30,0.73,0.25 399 | 1991-04,1991.2917,358.77,356.13,30,0.66,0.23 400 | 1991-05,1991.3750,359.23,356.10,29,0.52,0.19 401 | 1991-06,1991.4583,358.23,355.88,29,0.30,0.11 402 | 1991-07,1991.5417,356.30,355.69,24,0.46,0.18 403 | 1991-08,1991.6250,353.97,355.59,23,0.39,0.15 404 | 1991-09,1991.7083,352.34,355.66,27,0.37,0.14 405 | 1991-10,1991.7917,352.43,355.69,27,0.25,0.09 406 | 1991-11,1991.8750,353.89,355.87,28,0.25,0.09 407 | 1991-12,1991.9583,355.21,356.02,30,0.34,0.12 408 | 1992-01,1992.0417,356.34,356.29,31,0.60,0.21 409 | 1992-02,1992.1250,357.21,356.47,27,0.56,0.21 410 | 1992-03,1992.2083,357.97,356.38,24,0.72,0.28 411 | 1992-04,1992.2917,359.22,356.51,27,0.53,0.20 412 | 1992-05,1992.3750,359.71,356.52,26,0.74,0.28 413 | 1992-06,1992.4583,359.44,357.07,30,0.49,0.17 414 | 1992-07,1992.5417,357.15,356.58,25,0.63,0.24 415 | 1992-08,1992.6250,354.99,356.67,24,0.62,0.24 416 | 1992-09,1992.7083,353.01,356.36,25,0.98,0.38 417 | 1992-10,1992.7917,353.41,356.72,29,0.56,0.20 418 | 1992-11,1992.8750,354.42,356.48,29,0.34,0.12 419 | 1992-12,1992.9583,355.68,356.50,31,0.32,0.11 420 | 1993-01,1993.0417,357.10,357.06,28,0.58,0.21 421 | 1993-02,1993.1250,357.42,356.54,28,0.49,0.18 422 | 1993-03,1993.2083,358.59,356.88,30,0.72,0.25 423 | 1993-04,1993.2917,359.39,356.71,25,0.53,0.20 424 | 1993-05,1993.3750,360.30,357.14,30,0.45,0.16 425 | 1993-06,1993.4583,359.64,357.24,28,0.35,0.13 426 | 1993-07,1993.5417,357.45,356.87,25,0.78,0.30 427 | 1993-08,1993.6250,355.76,357.44,27,0.62,0.23 428 | 1993-09,1993.7083,354.14,357.51,23,0.73,0.29 429 | 1993-10,1993.7917,354.23,357.61,28,0.29,0.11 430 | 1993-11,1993.8750,355.53,357.65,29,0.26,0.09 431 | 1993-12,1993.9583,357.03,357.92,29,0.28,0.10 432 | 1994-01,1994.0417,358.36,358.25,27,0.33,0.12 433 | 1994-02,1994.1250,359.04,358.21,25,0.50,0.19 434 | 1994-03,1994.2083,360.11,358.41,29,0.82,0.29 435 | 1994-04,1994.2917,361.36,358.59,28,0.50,0.18 436 | 1994-05,1994.3750,361.78,358.59,30,0.45,0.16 437 | 1994-06,1994.4583,360.94,358.57,27,0.30,0.11 438 | 1994-07,1994.5417,359.51,358.91,31,0.41,0.14 439 | 1994-08,1994.6250,357.59,359.29,24,0.43,0.17 440 | 1994-09,1994.7083,355.86,359.31,24,0.58,0.23 441 | 1994-10,1994.7917,356.21,359.63,28,0.28,0.10 442 | 1994-11,1994.8750,357.65,359.80,28,0.51,0.18 443 | 1994-12,1994.9583,359.10,359.96,28,0.46,0.17 444 | 1995-01,1995.0417,360.04,359.91,30,0.47,0.16 445 | 1995-02,1995.1250,361.00,360.18,28,0.52,0.19 446 | 1995-03,1995.2083,361.98,360.37,29,0.78,0.28 447 | 1995-04,1995.2917,363.44,360.76,29,0.65,0.23 448 | 1995-05,1995.3750,363.83,360.73,29,0.66,0.24 449 | 1995-06,1995.4583,363.33,360.98,27,0.37,0.14 450 | 1995-07,1995.5417,361.78,361.10,28,0.36,0.13 451 | 1995-08,1995.6250,359.33,360.93,24,0.70,0.28 452 | 1995-09,1995.7083,358.32,361.70,24,0.68,0.26 453 | 1995-10,1995.7917,358.14,361.52,29,0.26,0.09 454 | 1995-11,1995.8750,359.61,361.75,26,0.24,0.09 455 | 1995-12,1995.9583,360.82,361.67,30,0.36,0.12 456 | 1996-01,1996.0417,362.20,361.98,29,0.38,0.13 457 | 1996-02,1996.1250,363.36,362.47,28,0.55,0.20 458 | 1996-03,1996.2083,364.28,362.64,28,0.67,0.24 459 | 1996-04,1996.2917,364.69,361.99,29,0.59,0.21 460 | 1996-05,1996.3750,365.25,362.23,30,0.57,0.20 461 | 1996-06,1996.4583,365.06,362.82,30,0.38,0.13 462 | 1996-07,1996.5417,363.69,362.98,31,0.32,0.11 463 | 1996-08,1996.6250,361.55,363.13,27,0.49,0.18 464 | 1996-09,1996.7083,359.69,363.14,25,0.75,0.29 465 | 1996-10,1996.7917,359.72,363.12,29,0.32,0.11 466 | 1996-11,1996.8750,361.04,363.18,29,0.29,0.10 467 | 1996-12,1996.9583,362.39,363.23,29,0.36,0.13 468 | 1997-01,1997.0417,363.24,363.03,31,0.40,0.14 469 | 1997-02,1997.1250,364.21,363.40,28,0.62,0.22 470 | 1997-03,1997.2083,364.65,363.02,31,0.40,0.14 471 | 1997-04,1997.2917,366.49,363.82,21,0.46,0.19 472 | 1997-05,1997.3750,366.77,363.87,29,0.53,0.19 473 | 1997-06,1997.4583,365.73,363.56,27,0.23,0.09 474 | 1997-07,1997.5417,364.46,363.74,24,0.47,0.18 475 | 1997-08,1997.6250,362.40,363.98,25,0.57,0.22 476 | 1997-09,1997.7083,360.44,363.83,26,0.63,0.24 477 | 1997-10,1997.7917,360.97,364.28,27,0.32,0.12 478 | 1997-11,1997.8750,362.65,364.71,30,0.31,0.11 479 | 1997-12,1997.9583,364.51,365.28,30,0.41,0.14 480 | 1998-01,1998.0417,365.39,365.19,30,0.43,0.15 481 | 1998-02,1998.1250,366.10,365.29,28,0.62,0.23 482 | 1998-03,1998.2083,367.36,365.73,31,0.82,0.28 483 | 1998-04,1998.2917,368.79,366.17,29,0.63,0.22 484 | 1998-05,1998.3750,369.56,366.68,30,0.77,0.27 485 | 1998-06,1998.4583,369.13,366.95,28,0.24,0.09 486 | 1998-07,1998.5417,367.98,367.29,23,0.65,0.26 487 | 1998-08,1998.6250,366.10,367.69,30,0.30,0.10 488 | 1998-09,1998.7083,364.16,367.51,28,0.40,0.14 489 | 1998-10,1998.7917,364.54,367.82,30,0.26,0.09 490 | 1998-11,1998.8750,365.67,367.70,23,0.25,0.10 491 | 1998-12,1998.9583,367.30,368.05,26,0.36,0.14 492 | 1999-01,1999.0417,368.35,368.13,27,0.47,0.17 493 | 1999-02,1999.1250,369.28,368.46,21,0.47,0.20 494 | 1999-03,1999.2083,369.84,368.24,25,0.81,0.31 495 | 1999-04,1999.2917,371.15,368.62,29,0.67,0.24 496 | 1999-05,1999.3750,371.12,368.31,26,0.59,0.22 497 | 1999-06,1999.4583,370.46,368.29,26,0.44,0.16 498 | 1999-07,1999.5417,369.61,368.93,27,0.63,0.23 499 | 1999-08,1999.6250,367.06,368.63,25,0.38,0.14 500 | 1999-09,1999.7083,364.95,368.28,28,0.74,0.27 501 | 1999-10,1999.7917,365.52,368.80,31,0.28,0.10 502 | 1999-11,1999.8750,366.88,368.86,28,0.25,0.09 503 | 1999-12,1999.9583,368.26,368.93,26,0.29,0.11 504 | 2000-01,2000.0417,369.45,369.24,26,0.48,0.18 505 | 2000-02,2000.1250,369.71,368.99,19,0.48,0.21 506 | 2000-03,2000.2083,370.75,369.24,30,0.47,0.16 507 | 2000-04,2000.2917,371.98,369.44,27,0.58,0.21 508 | 2000-05,2000.3750,371.74,368.87,28,0.53,0.19 509 | 2000-06,2000.4583,371.87,369.66,28,0.24,0.09 510 | 2000-07,2000.5417,370.02,369.36,25,0.31,0.12 511 | 2000-08,2000.6250,368.27,369.87,27,0.42,0.15 512 | 2000-09,2000.7083,367.15,370.46,25,0.36,0.14 513 | 2000-10,2000.7917,367.18,370.42,30,0.27,0.09 514 | 2000-11,2000.8750,368.53,370.48,25,0.30,0.12 515 | 2000-12,2000.9583,369.83,370.46,30,0.38,0.13 516 | 2001-01,2001.0417,370.76,370.60,30,0.56,0.20 517 | 2001-02,2001.1250,371.69,370.95,26,0.61,0.23 518 | 2001-03,2001.2083,372.63,371.06,26,0.46,0.17 519 | 2001-04,2001.2917,373.55,370.99,29,0.56,0.20 520 | 2001-05,2001.3750,374.03,371.11,24,0.41,0.16 521 | 2001-06,2001.4583,373.40,371.17,26,0.37,0.14 522 | 2001-07,2001.5417,371.68,371.08,25,0.62,0.24 523 | 2001-08,2001.6250,369.78,371.39,27,0.60,0.22 524 | 2001-09,2001.7083,368.34,371.61,28,0.49,0.18 525 | 2001-10,2001.7917,368.61,371.85,31,0.33,0.11 526 | 2001-11,2001.8750,369.94,371.92,24,0.24,0.09 527 | 2001-12,2001.9583,371.42,372.09,29,0.40,0.14 528 | 2002-01,2002.0417,372.70,372.48,28,0.52,0.19 529 | 2002-02,2002.1250,373.37,372.49,28,0.66,0.24 530 | 2002-03,2002.2083,374.30,372.61,24,0.62,0.24 531 | 2002-04,2002.2917,375.19,372.54,29,0.55,0.19 532 | 2002-05,2002.3750,375.93,372.98,29,0.57,0.20 533 | 2002-06,2002.4583,375.69,373.46,28,0.46,0.17 534 | 2002-07,2002.5417,374.16,373.58,25,0.47,0.18 535 | 2002-08,2002.6250,372.03,373.70,28,0.65,0.24 536 | 2002-09,2002.7083,370.92,374.28,23,0.74,0.30 537 | 2002-10,2002.7917,370.73,374.06,31,0.62,0.21 538 | 2002-11,2002.8750,372.43,374.52,29,0.43,0.15 539 | 2002-12,2002.9583,373.98,374.72,31,0.46,0.16 540 | 2003-01,2003.0417,375.07,374.82,30,0.51,0.18 541 | 2003-02,2003.1250,375.82,374.95,27,0.58,0.21 542 | 2003-03,2003.2083,376.64,374.99,28,0.63,0.23 543 | 2003-04,2003.2917,377.92,375.24,27,0.37,0.14 544 | 2003-05,2003.3750,378.78,375.73,30,0.78,0.27 545 | 2003-06,2003.4583,378.46,376.21,25,0.39,0.15 546 | 2003-07,2003.5417,376.88,376.37,29,0.70,0.25 547 | 2003-08,2003.6250,374.57,376.27,23,0.57,0.23 548 | 2003-09,2003.7083,373.34,376.65,25,0.37,0.14 549 | 2003-10,2003.7917,373.31,376.65,30,0.33,0.12 550 | 2003-11,2003.8750,374.84,376.99,26,0.45,0.17 551 | 2003-12,2003.9583,376.17,376.93,27,0.40,0.15 552 | 2004-01,2004.0417,377.17,376.96,30,0.45,0.16 553 | 2004-02,2004.1250,378.05,377.19,29,0.74,0.26 554 | 2004-03,2004.2083,379.06,377.40,27,0.84,0.31 555 | 2004-04,2004.2917,380.54,377.80,26,0.52,0.19 556 | 2004-05,2004.3750,380.80,377.66,28,0.61,0.22 557 | 2004-06,2004.4583,379.87,377.57,21,0.47,0.19 558 | 2004-07,2004.5417,377.65,377.12,25,0.50,0.19 559 | 2004-08,2004.6250,376.17,377.90,16,0.45,0.21 560 | 2004-09,2004.7083,374.43,377.80,15,0.56,0.28 561 | 2004-10,2004.7917,374.63,377.99,29,0.19,0.07 562 | 2004-11,2004.8750,376.33,378.49,29,0.62,0.22 563 | 2004-12,2004.9583,377.68,378.48,30,0.29,0.10 564 | 2005-01,2005.0417,378.63,378.37,31,0.32,0.11 565 | 2005-02,2005.1250,379.91,379.10,24,0.60,0.24 566 | 2005-03,2005.2083,380.95,379.45,26,1.16,0.44 567 | 2005-04,2005.2917,382.48,379.84,26,0.53,0.20 568 | 2005-05,2005.3750,382.64,379.49,31,0.61,0.21 569 | 2005-06,2005.4583,382.40,380.07,28,0.21,0.08 570 | 2005-07,2005.5417,380.93,380.38,29,0.38,0.13 571 | 2005-08,2005.6250,378.93,380.61,26,0.53,0.20 572 | 2005-09,2005.7083,376.89,380.20,27,0.51,0.19 573 | 2005-10,2005.7917,377.19,380.50,14,0.15,0.08 574 | 2005-11,2005.8750,378.54,380.69,23,0.45,0.18 575 | 2005-12,2005.9583,380.31,381.09,26,0.39,0.15 576 | 2006-01,2006.0417,381.58,381.33,24,0.31,0.12 577 | 2006-02,2006.1250,382.40,381.58,25,0.51,0.20 578 | 2006-03,2006.2083,382.86,381.32,29,0.55,0.20 579 | 2006-04,2006.2917,384.80,382.11,25,0.49,0.19 580 | 2006-05,2006.3750,385.22,382.06,24,0.45,0.17 581 | 2006-06,2006.4583,384.24,381.93,28,0.43,0.16 582 | 2006-07,2006.5417,382.65,382.10,24,0.32,0.12 583 | 2006-08,2006.6250,380.60,382.27,27,0.47,0.17 584 | 2006-09,2006.7083,379.04,382.35,25,0.42,0.16 585 | 2006-10,2006.7917,379.33,382.66,23,0.40,0.16 586 | 2006-11,2006.8750,380.35,382.52,29,0.39,0.14 587 | 2006-12,2006.9583,382.02,382.84,27,0.38,0.14 588 | 2007-01,2007.0417,383.10,382.88,24,0.76,0.30 589 | 2007-02,2007.1250,384.12,383.22,21,0.81,0.34 590 | 2007-03,2007.2083,384.81,383.17,27,0.63,0.23 591 | 2007-04,2007.2917,386.73,383.95,25,0.76,0.29 592 | 2007-05,2007.3750,386.78,383.56,29,0.64,0.23 593 | 2007-06,2007.4583,386.33,384.06,26,0.42,0.16 594 | 2007-07,2007.5417,384.73,384.25,27,0.44,0.16 595 | 2007-08,2007.6250,382.24,383.95,22,0.64,0.26 596 | 2007-09,2007.7083,381.20,384.56,21,0.45,0.19 597 | 2007-10,2007.7917,381.37,384.72,29,0.19,0.07 598 | 2007-11,2007.8750,382.70,384.90,30,0.31,0.11 599 | 2007-12,2007.9583,384.19,385.07,22,0.34,0.14 600 | 2008-01,2008.0417,385.78,385.54,31,0.56,0.19 601 | 2008-02,2008.1250,386.06,385.20,26,0.58,0.22 602 | 2008-03,2008.2083,386.28,384.72,30,0.60,0.21 603 | 2008-04,2008.2917,387.33,384.71,22,1.19,0.49 604 | 2008-05,2008.3750,388.78,385.69,25,0.57,0.22 605 | 2008-06,2008.4583,387.99,385.68,23,0.49,0.20 606 | 2008-07,2008.5417,386.61,386.05,10,0.96,0.58 607 | 2008-08,2008.6250,384.32,385.98,25,0.66,0.25 608 | 2008-09,2008.7083,383.41,386.69,27,0.34,0.12 609 | 2008-10,2008.7917,383.22,386.50,23,0.27,0.11 610 | 2008-11,2008.8750,384.41,386.58,28,0.29,0.11 611 | 2008-12,2008.9583,385.79,386.64,29,0.27,0.10 612 | 2009-01,2009.0417,387.17,386.86,30,0.38,0.13 613 | 2009-02,2009.1250,387.70,386.81,26,0.49,0.18 614 | 2009-03,2009.2083,389.04,387.54,28,0.68,0.25 615 | 2009-04,2009.2917,389.76,387.15,29,0.85,0.30 616 | 2009-05,2009.3750,390.36,387.24,30,0.51,0.18 617 | 2009-06,2009.4583,389.70,387.46,29,0.60,0.21 618 | 2009-07,2009.5417,388.24,387.77,22,0.31,0.13 619 | 2009-08,2009.6250,386.29,387.99,28,0.62,0.22 620 | 2009-09,2009.7083,384.95,388.22,28,0.56,0.20 621 | 2009-10,2009.7917,384.64,387.88,30,0.31,0.11 622 | 2009-11,2009.8750,386.23,388.36,30,0.29,0.10 623 | 2009-12,2009.9583,387.63,388.43,20,0.47,0.20 624 | 2010-01,2010.0417,388.91,388.62,30,0.92,0.32 625 | 2010-02,2010.1250,390.41,389.47,20,1.31,0.56 626 | 2010-03,2010.2083,391.37,389.85,25,1.05,0.40 627 | 2010-04,2010.2917,392.67,390.12,26,0.65,0.24 628 | 2010-05,2010.3750,393.21,390.09,29,0.65,0.23 629 | 2010-06,2010.4583,392.38,390.10,28,0.42,0.15 630 | 2010-07,2010.5417,390.41,389.93,29,0.47,0.17 631 | 2010-08,2010.6250,388.54,390.21,26,0.41,0.16 632 | 2010-09,2010.7083,387.03,390.32,29,0.55,0.19 633 | 2010-10,2010.7917,387.43,390.72,31,0.27,0.09 634 | 2010-11,2010.8750,388.87,390.99,29,0.42,0.15 635 | 2010-12,2010.9583,389.99,390.80,29,0.47,0.17 636 | 2011-01,2011.0417,391.50,391.19,29,0.88,0.31 637 | 2011-02,2011.1250,392.05,391.12,28,0.47,0.17 638 | 2011-03,2011.2083,392.80,391.27,29,0.97,0.35 639 | 2011-04,2011.2917,393.44,390.83,28,0.73,0.26 640 | 2011-05,2011.3750,394.41,391.24,29,0.93,0.33 641 | 2011-06,2011.4583,393.95,391.64,28,0.45,0.16 642 | 2011-07,2011.5417,392.72,392.24,26,0.71,0.26 643 | 2011-08,2011.6250,390.33,392.04,27,0.42,0.15 644 | 2011-09,2011.7083,389.28,392.60,26,0.31,0.12 645 | 2011-10,2011.7917,389.19,392.53,30,0.17,0.06 646 | 2011-11,2011.8750,390.48,392.64,28,0.26,0.10 647 | 2011-12,2011.9583,392.06,392.86,26,0.37,0.14 648 | 2012-01,2012.0417,393.31,393.07,30,0.77,0.27 649 | 2012-02,2012.1250,394.04,393.20,26,1.19,0.45 650 | 2012-03,2012.2083,394.59,392.99,30,0.63,0.22 651 | 2012-04,2012.2917,396.38,393.65,29,0.59,0.21 652 | 2012-05,2012.3750,396.93,393.72,30,0.50,0.17 653 | 2012-06,2012.4583,395.91,393.63,28,0.59,0.21 654 | 2012-07,2012.5417,394.56,394.12,26,0.30,0.11 655 | 2012-08,2012.6250,392.59,394.37,30,0.52,0.18 656 | 2012-09,2012.7083,391.32,394.75,26,0.42,0.16 657 | 2012-10,2012.7917,391.27,394.64,28,0.23,0.08 658 | 2012-11,2012.8750,393.20,395.25,29,0.53,0.19 659 | 2012-12,2012.9583,394.57,395.27,29,0.44,0.16 660 | 2013-01,2013.0417,395.78,395.62,28,0.60,0.22 661 | 2013-02,2013.1250,397.03,396.23,25,0.57,0.22 662 | 2013-03,2013.2083,397.66,396.07,30,0.71,0.25 663 | 2013-04,2013.2917,398.64,395.79,22,0.59,0.24 664 | 2013-05,2013.3750,400.02,396.64,28,0.37,0.13 665 | 2013-06,2013.4583,398.81,396.48,26,0.43,0.16 666 | 2013-07,2013.5417,397.51,397.12,21,0.52,0.22 667 | 2013-08,2013.6250,395.39,397.27,27,0.45,0.16 668 | 2013-09,2013.7083,393.72,397.24,26,0.35,0.13 669 | 2013-10,2013.7917,393.90,397.25,28,0.16,0.06 670 | 2013-11,2013.8750,395.36,397.35,30,0.60,0.21 671 | 2013-12,2013.9583,397.03,397.78,30,0.48,0.17 672 | 2014-01,2014.0417,398.04,397.74,31,0.49,0.17 673 | 2014-02,2014.1250,398.27,397.45,27,0.51,0.19 674 | 2014-03,2014.2083,399.91,398.37,22,0.84,0.34 675 | 2014-04,2014.2917,401.51,398.63,26,0.50,0.19 676 | 2014-05,2014.3750,401.96,398.56,22,0.51,0.21 677 | 2014-06,2014.4583,401.43,399.10,28,0.36,0.13 678 | 2014-07,2014.5417,399.27,398.85,25,0.55,0.21 679 | 2014-08,2014.6250,397.18,399.07,22,0.28,0.12 680 | 2014-09,2014.7083,395.54,399.11,21,0.54,0.23 681 | 2014-10,2014.7917,396.16,399.58,24,0.73,0.29 682 | 2014-11,2014.8750,397.40,399.49,27,0.37,0.14 683 | 2014-12,2014.9583,399.08,399.81,29,0.60,0.21 684 | 2015-01,2015.0417,400.18,399.92,30,0.55,0.19 685 | 2015-02,2015.1250,400.55,399.77,28,0.63,0.23 686 | 2015-03,2015.2083,401.74,400.22,24,1.02,0.40 687 | 2015-04,2015.2917,403.35,400.46,26,0.86,0.32 688 | 2015-05,2015.3750,404.15,400.70,30,0.32,0.11 689 | 2015-06,2015.4583,402.97,400.65,29,0.47,0.17 690 | 2015-07,2015.5417,401.46,401.11,24,0.57,0.22 691 | 2015-08,2015.6250,399.11,401.04,28,0.74,0.27 692 | 2015-09,2015.7083,397.82,401.43,25,0.32,0.12 693 | 2015-10,2015.7917,398.49,401.89,28,0.56,0.20 694 | 2015-11,2015.8750,400.27,402.24,25,0.58,0.22 695 | 2015-12,2015.9583,402.06,402.72,30,0.67,0.23 696 | 2016-01,2016.0417,402.73,402.45,27,0.56,0.21 697 | 2016-02,2016.1250,404.25,403.40,25,1.11,0.43 698 | 2016-03,2016.2083,405.06,403.54,28,0.81,0.29 699 | 2016-04,2016.2917,407.60,404.77,23,1.04,0.41 700 | 2016-05,2016.3750,407.90,404.41,29,0.50,0.18 701 | 2016-06,2016.4583,406.99,404.59,26,0.60,0.23 702 | 2016-07,2016.5417,404.59,404.24,28,0.88,0.32 703 | 2016-08,2016.6250,402.45,404.41,24,0.60,0.23 704 | 2016-09,2016.7083,401.23,404.85,25,0.44,0.17 705 | 2016-10,2016.7917,401.79,405.23,29,0.30,0.11 706 | 2016-11,2016.8750,403.72,405.74,27,0.72,0.26 707 | 2016-12,2016.9583,404.64,405.33,29,0.44,0.16 708 | 2017-01,2017.0417,406.36,406.04,27,0.68,0.25 709 | 2017-02,2017.1250,406.65,405.80,26,0.71,0.27 710 | 2017-03,2017.2083,407.53,406.05,24,1.03,0.40 711 | 2017-04,2017.2917,409.22,406.37,26,0.86,0.32 712 | 2017-05,2017.3750,409.89,406.37,27,0.57,0.21 713 | 2017-06,2017.4583,409.08,406.68,26,0.54,0.20 714 | 2017-07,2017.5417,407.33,407.01,28,0.61,0.22 715 | 2017-08,2017.6250,405.32,407.31,29,0.32,0.12 716 | 2017-09,2017.7083,403.57,407.17,26,0.37,0.14 717 | 2017-10,2017.7917,403.82,407.23,27,0.30,0.11 718 | 2017-11,2017.8750,405.31,407.36,26,0.41,0.15 719 | 2017-12,2017.9583,407.00,407.71,31,0.57,0.20 720 | 2018-01,2018.0417,408.15,407.83,29,0.55,0.19 721 | 2018-02,2018.1250,408.52,407.61,28,0.52,0.19 722 | 2018-03,2018.2083,409.59,408.06,29,0.65,0.23 723 | 2018-04,2018.2917,410.45,407.65,21,0.90,0.38 724 | 2018-05,2018.3750,411.44,407.98,24,0.86,0.33 725 | 2018-06,2018.4583,410.99,408.60,29,0.61,0.22 726 | 2018-07,2018.5417,408.90,408.60,27,0.46,0.17 727 | 2018-08,2018.6250,407.16,409.17,31,0.28,0.10 728 | 2018-09,2018.7083,405.71,409.30,29,0.45,0.16 729 | 2018-10,2018.7917,406.19,409.56,30,0.32,0.11 730 | 2018-11,2018.8750,408.21,410.24,24,0.56,0.22 731 | 2018-12,2018.9583,409.27,409.99,30,0.50,0.17 732 | 2019-01,2019.0417,411.03,410.69,26,1.26,0.47 733 | 2019-02,2019.1250,411.96,410.97,27,1.14,0.42 734 | 2019-03,2019.2083,412.18,410.71,28,1.12,0.40 735 | 2019-04,2019.2917,413.54,410.92,27,0.60,0.22 736 | 2019-05,2019.3750,414.86,411.47,28,0.50,0.18 737 | 2019-06,2019.4583,414.15,411.74,27,0.36,0.13 738 | 2019-07,2019.5417,411.96,411.64,25,0.81,0.31 739 | 2019-08,2019.6250,410.17,412.10,29,0.32,0.11 740 | 2019-09,2019.7083,408.76,412.26,29,0.35,0.13 741 | 2019-10,2019.7917,408.74,412.09,29,0.31,0.11 742 | 2019-11,2019.8750,410.47,412.50,26,0.40,0.15 743 | 2019-12,2019.9583,411.97,412.71,31,0.40,0.14 744 | 2020-01,2020.0417,413.59,413.22,29,0.73,0.26 745 | 2020-02,2020.1250,414.32,413.40,28,0.69,0.25 746 | 2020-03,2020.2083,414.72,413.35,26,0.32,0.12 747 | 2020-04,2020.2917,416.42,413.92,28,0.65,0.24 748 | 2020-05,2020.3750,417.28,413.98,27,0.61,0.23 749 | 2020-06,2020.4583,416.58,414.15,27,0.44,0.16 750 | 2020-07,2020.5417,414.58,414.19,30,0.57,0.20 751 | 2020-08,2020.6250,412.75,414.60,25,0.25,0.10 752 | 2020-09,2020.7083,411.50,414.90,29,0.31,0.11 753 | 2020-10,2020.7917,411.49,414.79,30,0.22,0.08 754 | 2020-11,2020.8750,413.10,415.11,27,0.81,0.30 755 | 2020-12,2020.9583,414.23,414.91,30,0.48,0.17 756 | 2021-01,2021.0417,415.49,415.23,29,0.44,0.16 757 | 2021-02,2021.1250,416.72,415.80,28,1.02,0.37 758 | 2021-03,2021.2083,417.61,416.17,28,0.86,0.31 759 | 2021-04,2021.2917,419.01,416.59,24,1.12,0.44 760 | 2021-05,2021.3750,419.09,415.88,28,0.90,0.32 761 | 2021-06,2021.4583,418.93,416.48,29,0.65,0.23 762 | 2021-07,2021.5417,416.90,416.48,31,0.71,0.24 763 | 2021-08,2021.6250,414.42,416.27,25,0.74,0.28 764 | 2021-09,2021.7083,413.26,416.63,27,0.29,0.11 765 | 2021-10,2021.7917,413.90,417.14,29,0.35,0.12 766 | 2021-11,2021.8750,414.97,416.92,30,0.36,0.13 767 | 2021-12,2021.9583,416.67,417.37,28,0.48,0.17 768 | 2022-01,2022.0417,418.13,417.82,30,0.72,0.25 769 | 2022-02,2022.1250,419.24,418.31,27,0.92,0.34 770 | 2022-03,2022.2083,418.76,417.28,30,0.78,0.27 771 | 2022-04,2022.2917,420.19,417.66,28,0.86,0.31 772 | 2022-05,2022.3750,420.97,417.73,31,0.75,0.26 773 | 2022-06,2022.4583,420.94,418.53,28,0.30,0.11 774 | 2022-07,2022.5417,418.85,418.43,27,0.57,0.21 775 | 2022-08,2022.6250,417.15,419.01,27,0.37,0.13 776 | 2022-09,2022.7083,415.91,419.32,28,0.41,0.15 777 | 2022-10,2022.7917,415.74,419.03,30,0.27,0.10 778 | 2022-11,2022.8750,417.47,419.50,25,0.52,0.20 779 | 2022-12,2022.9583,418.99,419.71,24,0.57,0.22 780 | 2023-01,2023.0417,419.47,419.16,31,0.40,0.14 781 | 2023-02,2023.1250,420.31,419.38,23,0.70,0.28 782 | 2023-03,2023.2083,420.99,419.52,30,0.74,0.26 783 | 2023-04,2023.2917,423.31,420.78,27,0.56,0.21 784 | 2023-05,2023.3750,424.00,420.77,31,0.70,0.24 785 | 2023-06,2023.4583,423.68,421.26,29,0.57,0.20 786 | 2023-07,2023.5417,421.83,421.40,21,0.48,0.20 787 | 2023-08,2023.6250,419.68,421.55,21,0.45,0.19 788 | 2023-09,2023.7083,418.50,421.92,18,0.30,0.14 789 | 2023-10,2023.7917,418.82,422.12,27,0.47,0.17 790 | 2023-11,2023.8750,420.46,422.49,21,0.91,0.38 791 | 2023-12,2023.9583,421.86,422.57,20,0.69,0.29 792 | 2024-01,2024.0417,422.80,422.50,27,0.70,0.26 793 | 2024-02,2024.1250,424.55,423.63,22,1.24,0.51 794 | 2024-03,2024.2083,425.38,423.91,22,0.99,0.40 795 | 2024-04,2024.2917,426.51,423.98,22,0.99,0.40 796 | 2024-05,2024.3750,426.90,423.67,29,0.76,0.27 797 | 2024-06,2024.4583,426.91,424.50,20,0.65,0.28 798 | 2024-07,2024.5417,425.55,425.13,24,0.69,0.27 799 | 2024-08,2024.6250,422.99,424.85,22,1.08,0.44 800 | 2024-09,2024.7083,422.03,425.45,18,0.41,0.18 801 | 2024-10,2024.7917,422.38,425.68,22,0.35,0.14 802 | 2024-11,2024.8750,423.85,425.88,24,0.33,0.13 803 | 2024-12,2024.9583,425.40,426.12,28,0.70,0.25 804 | 2025-01,2025.0417,426.65,426.34,29,0.62,0.22 805 | 2025-02,2025.1250,427.09,426.16,24,0.64,0.25 806 | 2025-03,2025.2083,428.15,426.67,27,1.13,0.42 807 | 2025-04,2025.2917,429.64,427.11,23,0.73,0.29 808 | -------------------------------------------------------------------------------- /datapackage.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "co2-ppm", 3 | "title": "CO2 PPM - Trends in Atmospheric Carbon Dioxide", 4 | "description": "Data are sourced from the US Government's Earth System Research Laboratory, Global Monitoring Division. Two main series are provided: the Mauna Loa series (which has the longest continuous series since 1958) and a Global Average series (a global average over marine surface sites).", 5 | "homepage": "http://www.esrl.noaa.gov/gmd/ccgg/trends", 6 | "version": "0.1.0", 7 | "licenses": [ 8 | { 9 | "name": "ODC-PDDL-1.0", 10 | "path": "http://opendatacommons.org/licenses/pddl/", 11 | "title": "Open Data Commons Public Domain Dedication and License v1.0" 12 | } 13 | ], 14 | "sources": [ 15 | { 16 | "name": "Trends in Atmospheric Carbon Dioxide, Mauna Loa, Hawaii", 17 | "path": "http://www.esrl.noaa.gov/gmd/ccgg/trends/index.html", 18 | "title": "Trends in Atmospheric Carbon Dioxide, Mauna Loa, Hawaii" 19 | }, 20 | { 21 | "name": "Trends in Atmospheric Carbon Dioxide, Global", 22 | "path": "http://www.esrl.noaa.gov/gmd/ccgg/trends/global.html", 23 | "title": "Trends in Atmospheric Carbon Dioxide, Global" 24 | } 25 | ], 26 | "resources": [ 27 | { 28 | "name": "co2-mm-mlo", 29 | "path": "data/co2-mm-mlo.csv", 30 | "format": "csv", 31 | "mediatype": "text/csv", 32 | "schema": { 33 | "fields": [ 34 | { 35 | "name": "Date", 36 | "type": "date", 37 | "description": "YYYY-MM-DD", 38 | "format": "any" 39 | }, 40 | { 41 | "name": "Decimal Date", 42 | "type": "number", 43 | "description": "" 44 | }, 45 | { 46 | "name": "Average", 47 | "type": "number", 48 | "description": "The monthly mean CO2 mole fraction determined from daily averages. If there are missing days concentrated either early or late in the month, the monthly mean is corrected to the middle of the month using the average seasonal cycle. Missing months are denoted by -99.99." 49 | }, 50 | { 51 | "name": "Interpolated", 52 | "type": "number", 53 | "description": "Values from the average column and interpolated values where data are missing. Interpolated values are computed in two steps. First, we compute for each month the average seasonal cycle in a 7-year window around each monthly value. In this way the seasonal cycle is allowed to change slowly over time. We then determine the trend value for each month by removing the seasonal cycle; this result is shown in the trend column. Trend values are linearly interpolated for missing months. The interpolated monthly mean is then the sum of the average seasonal cycle value and the trend value for the missing month." 54 | }, 55 | { 56 | "name": "Trend", 57 | "type": "number", 58 | "description": "Seasonally corrected." 59 | }, 60 | { 61 | "name": "Number of Days", 62 | "type": "number", 63 | "description": "-1 denotes no data for number of daily averages in the month." 64 | } 65 | ] 66 | } 67 | }, 68 | { 69 | "name": "co2-annmean-mlo", 70 | "path": "data/co2-annmean-mlo.csv", 71 | "format": "csv", 72 | "mediatype": "text/csv", 73 | "schema": { 74 | "fields": [ 75 | { 76 | "name": "Year", 77 | "type": "date", 78 | "description": "", 79 | "format": "any" 80 | }, 81 | { 82 | "name": "Mean", 83 | "type": "number", 84 | "description": "" 85 | }, 86 | { 87 | "name": "Uncertainty", 88 | "type": "number", 89 | "description": "The estimated uncertainty in the annual mean is the standard deviation of the differences of annual mean values determined independently by NOAA/ESRL and the Scripps Institution of Oceanography." 90 | } 91 | ] 92 | } 93 | }, 94 | { 95 | "name": "co2-gr-mlo", 96 | "path": "data/co2-gr-mlo.csv", 97 | "format": "csv", 98 | "mediatype": "text/csv", 99 | "schema": { 100 | "fields": [ 101 | { 102 | "name": "Year", 103 | "type": "date", 104 | "description": "", 105 | "format": "any" 106 | }, 107 | { 108 | "name": "Annual Increase", 109 | "type": "number", 110 | "description": "Annual CO2 mole fraction increase (ppm) from Jan 1 through Dec 31." 111 | }, 112 | { 113 | "name": "Uncertainty", 114 | "type": "number", 115 | "description": "Estimated from the standard deviation of the differences between monthly mean values determined independently by the Scripps Institution of Oceanography and by NOAA/ESRL." 116 | } 117 | ] 118 | } 119 | }, 120 | { 121 | "name": "co2-mm-gl", 122 | "path": "data/co2-mm-gl.csv", 123 | "format": "csv", 124 | "mediatype": "text/csv", 125 | "schema": { 126 | "fields": [ 127 | { 128 | "name": "Date", 129 | "type": "date", 130 | "description": "YYYY-MM-DD", 131 | "format": "any" 132 | }, 133 | { 134 | "name": "Decimal Date", 135 | "type": "number", 136 | "description": "" 137 | }, 138 | { 139 | "name": "Average", 140 | "type": "number", 141 | "description": "" 142 | }, 143 | { 144 | "name": "Trend", 145 | "type": "number", 146 | "description": "" 147 | } 148 | ] 149 | } 150 | }, 151 | { 152 | "name": "co2-annmean-gl", 153 | "path": "data/co2-annmean-gl.csv", 154 | "format": "csv", 155 | "mediatype": "text/csv", 156 | "schema": { 157 | "fields": [ 158 | { 159 | "name": "Year", 160 | "type": "date", 161 | "description": "", 162 | "format": "any" 163 | }, 164 | { 165 | "name": "Mean", 166 | "type": "number", 167 | "description": "" 168 | }, 169 | { 170 | "name": "Uncertainty", 171 | "type": "number", 172 | "description": "The uncertainty in the global annual mean is estimated using a monte carlo technique that computes 100 global annual averages, each time using a slightly different set of measurement records from the NOAA ESRL cooperative air sampling network. The reported uncertainty is the mean of the standard deviations for each annual average using this technique. Please see Conway et al., 1994, JGR, vol. 99, no. D11. for a complete discussion." 173 | } 174 | ] 175 | } 176 | }, 177 | { 178 | "name": "co2-gr-gl", 179 | "path": "data/co2-gr-gl.csv", 180 | "format": "csv", 181 | "mediatype": "text/csv", 182 | "schema": { 183 | "fields": [ 184 | { 185 | "name": "Year", 186 | "type": "date", 187 | "description": "", 188 | "format": "any" 189 | }, 190 | { 191 | "name": "Annual Increase", 192 | "type": "number", 193 | "description": "Annual CO2 mole fraction increase (ppm) from Jan 1 through Dec 31." 194 | }, 195 | { 196 | "name": "Uncertainty", 197 | "type": "number", 198 | "description": "The uncertainty in the global annual mean growth rate is estimated using a monte carlo technique that computes 100 time series of global annual growth rates, each time using measurement records from a different sampling of sites from the NOAA ESRL cooperative air sampling network. Each year has a different uncertainty. Please see Conway et al., 1994, JGR, vol. 99, no. D11. for a complete discussion. The last one or two years listed could have preliminary uncertainties set equal to the average uncertainty since 1980. Before 1980 the global growth rate has been approximated by taking the average of Mauna Loa and the South Pole, correcting for the offset between (MLO+SPO)/2 and the global Marine Boundary Layer, as described in Ballantyne et al, 2012." 199 | } 200 | ] 201 | } 202 | } 203 | ], 204 | "views": [ 205 | { 206 | "name": "graph", 207 | "title": "Trends in Atmospheric Carbon Dioxide", 208 | "resources": [ 209 | "co2-mm-mlo" 210 | ], 211 | "specType": "simple", 212 | "spec": { 213 | "type": "lines-and-points", 214 | "group": "Date", 215 | "series": [ 216 | "Interpolated", 217 | "Trend" 218 | ] 219 | } 220 | }, 221 | { 222 | "name": "growth-rate", 223 | "title": "Growth rate of Carbon Dioxide", 224 | "resources": [ 225 | "co2-gr-mlo" 226 | ], 227 | "specType": "simple", 228 | "spec": { 229 | "type": "bar", 230 | "group": "Year", 231 | "series": [ 232 | "Annual Increase" 233 | ] 234 | } 235 | } 236 | ], 237 | "collection": "climate-change" 238 | } -------------------------------------------------------------------------------- /scripts/process.sh: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | 3 | #Mauna Loa monthly data 4 | files[0]='co2_mm_mlo.txt' 5 | headers[0]='Date,Decimal Date,Average,Interpolated,Trend,Number of Days' 6 | # Mauna Loa annual data 7 | files[1]='co2_annmean_mlo.txt' 8 | headers[1]='Year,Mean,Uncertainty' 9 | #Mauna Loa growth rate data 10 | files[2]='co2_gr_mlo.txt' 11 | headers[2]='Year,Annual Increase,Uncertainty' 12 | # global monthly data 13 | files[3]='co2_mm_gl.txt' 14 | headers[3]='Date,Decimal Date,Average,Trend' 15 | #global annual data 16 | files[4]='co2_annmean_gl.txt' 17 | headers[4]='Year,Mean,Uncertainty' 18 | #global growth rate data 19 | files[5]='co2_gr_gl.txt' 20 | headers[5]='Year,Annual Increase,Uncertainty' 21 | 22 | rename () { 23 | echo $1 | \ 24 | # replace underscores with dashes 25 | sed 's/_/-/g' | \ 26 | # replace txt extension with csv 27 | sed 's/\.txt$/.csv/' 28 | } 29 | 30 | write_csv_header () { 31 | # write the header to the output file 32 | echo $1 > $2 33 | } 34 | 35 | write_csv_content () { 36 | cat $1 | \ 37 | # delete note at top 38 | sed '/^#/ d' | \ 39 | # remove leading whitespace 40 | sed 's/^[ ][ ]*//' | \ 41 | # replace whitespace with commas 42 | sed 's/[ ][ ]*/,/g' | \ 43 | # combine year and month 44 | sed 's/^\([0-9]\{4\}\),\([0-9]\{1,2\}\),/\1-\2,/' | \ 45 | # change 1980-1 to 1980-01 46 | sed 's/\-\([0-9]\),/-0\1,/g' \ 47 | >> $2 48 | } 49 | 50 | mkdir -p tmp 51 | mkdir -p data 52 | 53 | for index in "${!files[@]}"; do 54 | file="${files[$index]}" 55 | header="${headers[$index]}" 56 | curl ftp://aftp.cmdl.noaa.gov/products/trends/co2/$file > tmp/$file 57 | output=`rename $file` 58 | write_csv_header "${header}" data/$output 59 | write_csv_content tmp/$file data/$output 60 | done 61 | --------------------------------------------------------------------------------