├── .gitignore ├── LICENSE ├── README.md ├── case ├── back.scad ├── back.stl ├── bracket.scad ├── bracket.stl ├── camera_bracket.scad ├── front.scad ├── front.stl ├── ir_sensor_cover.scad ├── ir_sensor_cover.stl ├── ir_sensor_cover_outer.scad ├── ir_sensor_cover_outer.stl ├── params.scad └── test.scad ├── docs ├── datasheets │ ├── HTPA 32x32d L2.1_0.8 (Hi)S Rev2 Datasheet.pdf │ ├── HeimannArrays9-9-16.pdf │ ├── MLX90621-Datasheet-Melexis.pdf │ └── pyrometry.pdf ├── images │ ├── DSC01492.JPG │ ├── DSC01496.JPG │ ├── DSC01499.JPG │ ├── DSC01504.JPG │ ├── DSC01506.JPG │ ├── DSC01509.JPG │ ├── DSC01514.JPG │ ├── DSC01517.JPG │ ├── DSC01521.JPG │ ├── DSC01523.JPG │ ├── DSC01525.JPG │ ├── DSC01531-alt.jpg │ ├── DSC01532-alt.jpg │ ├── DSC01536.JPG │ ├── DSC01538.JPG │ ├── demo.jpg │ └── demo2.jpg ├── noise-analysis │ ├── 74-82-8-IR.jdx │ ├── ASTMG173.xls │ ├── FB3500-500.xlsx │ ├── SMARTS_295_Mac │ │ ├── AAgreement_LICENSE.txt │ │ ├── Albedo │ │ │ ├── ALFALFA.DAT │ │ │ ├── Albedo.dat │ │ │ ├── Asphalt.dat │ │ │ ├── BASALT.DAT │ │ │ ├── Birch.dat │ │ │ ├── BlckLoam.dat │ │ │ ├── BrwnLoam.dat │ │ │ ├── BrwnSand.dat │ │ │ ├── CONCRETE.DAT │ │ │ ├── CSeaWatr.dat │ │ │ ├── Conifers.dat │ │ │ ├── DRY_SAND.DAT │ │ │ ├── DarkLoam.dat │ │ │ ├── DarkSand.dat │ │ │ ├── Decidous.dat │ │ │ ├── DryGrass.dat │ │ │ ├── Dry_Soil.dat │ │ │ ├── Dry_clay.dat │ │ │ ├── DuneSand.dat │ │ │ ├── Fallow.dat │ │ │ ├── FibrGlss.dat │ │ │ ├── FineSnow.dat │ │ │ ├── FirTrees.dat │ │ │ ├── GRASS.DAT │ │ │ ├── Gravel.dat │ │ │ ├── GrazingField.dat │ │ │ ├── GrnGrass.dat │ │ │ ├── GrnlSnow.dat │ │ │ ├── LiteClay.dat │ │ │ ├── LiteLoam.dat │ │ │ ├── LiteSand.dat │ │ │ ├── LiteSoil.dat │ │ │ ├── LngGrass.dat │ │ │ ├── LwnGrass.dat │ │ │ ├── MEADOW1.DAT │ │ │ ├── MEADOW2.DAT │ │ │ ├── MeltSnow.dat │ │ │ ├── NEVE.DAT │ │ │ ├── OSeaWatr.dat │ │ │ ├── OakTree.dat │ │ │ ├── PINETREE.DAT │ │ │ ├── PaleLoam.dat │ │ │ ├── Pinion.dat │ │ │ ├── Plywood.dat │ │ │ ├── RConcrte.dat │ │ │ ├── RYEGRASS.DAT │ │ │ ├── RedBrick.dat │ │ │ ├── RoofTile.dat │ │ │ ├── SNOW.DAT │ │ │ ├── SOIL.DAT │ │ │ ├── SageBrsh.dat │ │ │ ├── Seawater.dat │ │ │ ├── ShtMetal.dat │ │ │ ├── SndGravl.dat │ │ │ ├── SolidIce.dat │ │ │ ├── Spruce.dat │ │ │ ├── TallCorn.dat │ │ │ ├── WETCLAY.DAT │ │ │ ├── WHEAT.DAT │ │ │ ├── WITESAND.DAT │ │ │ ├── WetClay2.dat │ │ │ ├── WetSSoil.dat │ │ │ ├── WetSilt.dat │ │ │ ├── Wetland.dat │ │ │ └── WiteVinl.dat │ │ ├── CIE_data │ │ │ ├── VLambda.dat │ │ │ └── VMLambda.dat │ │ ├── Documentation │ │ │ ├── History.txt │ │ │ └── SMARTS295_Users_Manual_OSX.pdf │ │ ├── Examples │ │ │ ├── Example 1-USSA_ASTM&ISO_old_Std │ │ │ │ ├── ReadMe_Example1.txt │ │ │ │ ├── smarts295.ext.txt │ │ │ │ ├── smarts295.inp.txt │ │ │ │ └── smarts295.out.txt │ │ │ ├── Example 10-High_UV_ref_spectrum │ │ │ │ ├── ReadMe_Example10.txt │ │ │ │ ├── smarts295.ext.txt │ │ │ │ ├── smarts295.inp.txt │ │ │ │ └── smarts295.out.txt │ │ │ ├── Example 11-Vertical_receivers │ │ │ │ ├── ReadMe_Example11.txt │ │ │ │ ├── smarts295.ext.txt │ │ │ │ └── smarts295.out.txt │ │ │ ├── Example 2-Arizona_UV_tracking │ │ │ │ ├── ReadMe_Example2.txt │ │ │ │ ├── smarts295.ext.txt │ │ │ │ ├── smarts295.inp.txt │ │ │ │ ├── smarts295.out.txt │ │ │ │ └── smarts295.scn.txt │ │ │ ├── Example 3-USSA_UV │ │ │ │ ├── ReadMe_Example3.txt │ │ │ │ ├── smarts295.ext.txt │ │ │ │ ├── smarts295.inp.txt │ │ │ │ └── smarts295.out.txt │ │ │ ├── Example 4-UV_Spectrum_Summer │ │ │ │ ├── ReadMe_Example4.txt │ │ │ │ ├── smarts295.ext.txt │ │ │ │ ├── smarts295.inp.txt │ │ │ │ ├── smarts295.out.txt │ │ │ │ └── smarts295.scn.txt │ │ │ ├── Example 5-USSA_085 │ │ │ │ ├── ReadMe_Example5.txt │ │ │ │ ├── smarts295.ext.txt │ │ │ │ ├── smarts295.inp.txt │ │ │ │ └── smarts295.out.txt │ │ │ ├── Example 6-USSA_084 │ │ │ │ ├── ReadMe_Example6.txt │ │ │ │ ├── smarts295.ext.txt │ │ │ │ ├── smarts295.inp.txt │ │ │ │ └── smarts295.out.txt │ │ │ ├── Example 7-Phoenix_summer_UV │ │ │ │ ├── Icon │ │ │ │ ├── ReadMe_Example7.txt │ │ │ │ ├── smarts295.ext.txt │ │ │ │ ├── smarts295.inp.txt │ │ │ │ └── smarts295.out.txt │ │ │ ├── Example 8-Phoenix_summer_day_UV │ │ │ │ ├── Icon │ │ │ │ ├── ReadMe_Example8.txt │ │ │ │ ├── smarts295.inp.txt │ │ │ │ └── smarts295.out.txt │ │ │ └── Example 9-NREL_summer_scan │ │ │ │ ├── Icon │ │ │ │ ├── ReadMe_Example9.txt │ │ │ │ ├── smarts295.inp.txt │ │ │ │ ├── smarts295.out.txt │ │ │ │ └── smarts295.scn.txt │ │ ├── Gases │ │ │ ├── Abs_BrO.dat │ │ │ ├── Abs_CH2O.dat │ │ │ ├── Abs_CH4.dat │ │ │ ├── Abs_CO.dat │ │ │ ├── Abs_CO2.dat │ │ │ ├── Abs_ClNO.dat │ │ │ ├── Abs_H2O.dat │ │ │ ├── Abs_HNO2.dat │ │ │ ├── Abs_HNO3.dat │ │ │ ├── Abs_N2.dat │ │ │ ├── Abs_N2O.dat │ │ │ ├── Abs_NH3.dat │ │ │ ├── Abs_NO.dat │ │ │ ├── Abs_NO2.dat │ │ │ ├── Abs_NO3.dat │ │ │ ├── Abs_O2.dat │ │ │ ├── Abs_O3IR.dat │ │ │ ├── Abs_O3UV.dat │ │ │ ├── Abs_O4.dat │ │ │ ├── Abs_SO2I.dat │ │ │ └── Abs_SO2U.dat │ │ ├── INPUT │ │ │ ├── Example.inp.txt │ │ │ ├── Test_for_July.inp.txt │ │ │ └── smarts295.inp.txt │ │ ├── OUTPUT │ │ │ ├── Example.ext.txt │ │ │ └── Example.out.txt │ │ ├── QuickStart_Mac.pdf │ │ ├── Solar │ │ │ ├── Spctrm_0.dat │ │ │ ├── Spctrm_1.dat │ │ │ ├── Spctrm_2.dat │ │ │ ├── Spctrm_3.dat │ │ │ ├── Spctrm_4.dat │ │ │ ├── Spctrm_5.dat │ │ │ ├── Spctrm_6.dat │ │ │ ├── Spctrm_7.dat │ │ │ ├── Spctrm_8.dat │ │ │ └── Spctrm_U.dat │ │ ├── Source_code │ │ │ ├── smarts295.f │ │ │ ├── smarts295_cmd │ │ │ ├── smarts295_cmd.bak │ │ │ └── smarts295script.csh │ │ ├── smarts295.command │ │ ├── smarts295.ext.txt │ │ ├── smarts295.inp.txt │ │ ├── smarts295.out.txt │ │ └── smarts295bat │ ├── pm_filter.csv │ ├── smarts.txt │ └── solar-data.ipynb └── results │ └── burner.mov └── src ├── capture_display.py ├── dualcam.py └── htpa.py /.gitignore: -------------------------------------------------------------------------------- 1 | .DS_Store 2 | .ipynb_checkpoints/ 3 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loganwilliams/thermografree/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loganwilliams/thermografree/HEAD/README.md -------------------------------------------------------------------------------- /case/back.scad: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loganwilliams/thermografree/HEAD/case/back.scad -------------------------------------------------------------------------------- /case/back.stl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loganwilliams/thermografree/HEAD/case/back.stl -------------------------------------------------------------------------------- /case/bracket.scad: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loganwilliams/thermografree/HEAD/case/bracket.scad -------------------------------------------------------------------------------- /case/bracket.stl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loganwilliams/thermografree/HEAD/case/bracket.stl -------------------------------------------------------------------------------- /case/camera_bracket.scad: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loganwilliams/thermografree/HEAD/case/camera_bracket.scad -------------------------------------------------------------------------------- /case/front.scad: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loganwilliams/thermografree/HEAD/case/front.scad -------------------------------------------------------------------------------- /case/front.stl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loganwilliams/thermografree/HEAD/case/front.stl -------------------------------------------------------------------------------- /case/ir_sensor_cover.scad: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loganwilliams/thermografree/HEAD/case/ir_sensor_cover.scad -------------------------------------------------------------------------------- /case/ir_sensor_cover.stl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loganwilliams/thermografree/HEAD/case/ir_sensor_cover.stl -------------------------------------------------------------------------------- /case/ir_sensor_cover_outer.scad: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loganwilliams/thermografree/HEAD/case/ir_sensor_cover_outer.scad -------------------------------------------------------------------------------- /case/ir_sensor_cover_outer.stl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loganwilliams/thermografree/HEAD/case/ir_sensor_cover_outer.stl -------------------------------------------------------------------------------- /case/params.scad: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loganwilliams/thermografree/HEAD/case/params.scad -------------------------------------------------------------------------------- /case/test.scad: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loganwilliams/thermografree/HEAD/case/test.scad -------------------------------------------------------------------------------- /docs/datasheets/HTPA 32x32d L2.1_0.8 (Hi)S Rev2 Datasheet.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loganwilliams/thermografree/HEAD/docs/datasheets/HTPA 32x32d L2.1_0.8 (Hi)S Rev2 Datasheet.pdf -------------------------------------------------------------------------------- /docs/datasheets/HeimannArrays9-9-16.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loganwilliams/thermografree/HEAD/docs/datasheets/HeimannArrays9-9-16.pdf -------------------------------------------------------------------------------- /docs/datasheets/MLX90621-Datasheet-Melexis.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loganwilliams/thermografree/HEAD/docs/datasheets/MLX90621-Datasheet-Melexis.pdf -------------------------------------------------------------------------------- /docs/datasheets/pyrometry.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loganwilliams/thermografree/HEAD/docs/datasheets/pyrometry.pdf -------------------------------------------------------------------------------- /docs/images/DSC01492.JPG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loganwilliams/thermografree/HEAD/docs/images/DSC01492.JPG -------------------------------------------------------------------------------- /docs/images/DSC01496.JPG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loganwilliams/thermografree/HEAD/docs/images/DSC01496.JPG -------------------------------------------------------------------------------- /docs/images/DSC01499.JPG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loganwilliams/thermografree/HEAD/docs/images/DSC01499.JPG -------------------------------------------------------------------------------- /docs/images/DSC01504.JPG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loganwilliams/thermografree/HEAD/docs/images/DSC01504.JPG -------------------------------------------------------------------------------- /docs/images/DSC01506.JPG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loganwilliams/thermografree/HEAD/docs/images/DSC01506.JPG -------------------------------------------------------------------------------- /docs/images/DSC01509.JPG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loganwilliams/thermografree/HEAD/docs/images/DSC01509.JPG -------------------------------------------------------------------------------- /docs/images/DSC01514.JPG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loganwilliams/thermografree/HEAD/docs/images/DSC01514.JPG -------------------------------------------------------------------------------- /docs/images/DSC01517.JPG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loganwilliams/thermografree/HEAD/docs/images/DSC01517.JPG -------------------------------------------------------------------------------- /docs/images/DSC01521.JPG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loganwilliams/thermografree/HEAD/docs/images/DSC01521.JPG -------------------------------------------------------------------------------- /docs/images/DSC01523.JPG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loganwilliams/thermografree/HEAD/docs/images/DSC01523.JPG -------------------------------------------------------------------------------- /docs/images/DSC01525.JPG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loganwilliams/thermografree/HEAD/docs/images/DSC01525.JPG -------------------------------------------------------------------------------- /docs/images/DSC01531-alt.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loganwilliams/thermografree/HEAD/docs/images/DSC01531-alt.jpg -------------------------------------------------------------------------------- /docs/images/DSC01532-alt.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loganwilliams/thermografree/HEAD/docs/images/DSC01532-alt.jpg -------------------------------------------------------------------------------- /docs/images/DSC01536.JPG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loganwilliams/thermografree/HEAD/docs/images/DSC01536.JPG -------------------------------------------------------------------------------- /docs/images/DSC01538.JPG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loganwilliams/thermografree/HEAD/docs/images/DSC01538.JPG -------------------------------------------------------------------------------- /docs/images/demo.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loganwilliams/thermografree/HEAD/docs/images/demo.jpg -------------------------------------------------------------------------------- /docs/images/demo2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loganwilliams/thermografree/HEAD/docs/images/demo2.jpg -------------------------------------------------------------------------------- /docs/noise-analysis/74-82-8-IR.jdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loganwilliams/thermografree/HEAD/docs/noise-analysis/74-82-8-IR.jdx -------------------------------------------------------------------------------- /docs/noise-analysis/ASTMG173.xls: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loganwilliams/thermografree/HEAD/docs/noise-analysis/ASTMG173.xls -------------------------------------------------------------------------------- /docs/noise-analysis/FB3500-500.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loganwilliams/thermografree/HEAD/docs/noise-analysis/FB3500-500.xlsx -------------------------------------------------------------------------------- /docs/noise-analysis/SMARTS_295_Mac/AAgreement_LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loganwilliams/thermografree/HEAD/docs/noise-analysis/SMARTS_295_Mac/AAgreement_LICENSE.txt -------------------------------------------------------------------------------- /docs/noise-analysis/SMARTS_295_Mac/Albedo/ALFALFA.DAT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loganwilliams/thermografree/HEAD/docs/noise-analysis/SMARTS_295_Mac/Albedo/ALFALFA.DAT -------------------------------------------------------------------------------- /docs/noise-analysis/SMARTS_295_Mac/Albedo/Albedo.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loganwilliams/thermografree/HEAD/docs/noise-analysis/SMARTS_295_Mac/Albedo/Albedo.dat -------------------------------------------------------------------------------- /docs/noise-analysis/SMARTS_295_Mac/Albedo/Asphalt.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loganwilliams/thermografree/HEAD/docs/noise-analysis/SMARTS_295_Mac/Albedo/Asphalt.dat -------------------------------------------------------------------------------- /docs/noise-analysis/SMARTS_295_Mac/Albedo/BASALT.DAT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loganwilliams/thermografree/HEAD/docs/noise-analysis/SMARTS_295_Mac/Albedo/BASALT.DAT -------------------------------------------------------------------------------- /docs/noise-analysis/SMARTS_295_Mac/Albedo/Birch.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loganwilliams/thermografree/HEAD/docs/noise-analysis/SMARTS_295_Mac/Albedo/Birch.dat -------------------------------------------------------------------------------- /docs/noise-analysis/SMARTS_295_Mac/Albedo/BlckLoam.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loganwilliams/thermografree/HEAD/docs/noise-analysis/SMARTS_295_Mac/Albedo/BlckLoam.dat -------------------------------------------------------------------------------- /docs/noise-analysis/SMARTS_295_Mac/Albedo/BrwnLoam.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loganwilliams/thermografree/HEAD/docs/noise-analysis/SMARTS_295_Mac/Albedo/BrwnLoam.dat -------------------------------------------------------------------------------- /docs/noise-analysis/SMARTS_295_Mac/Albedo/BrwnSand.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loganwilliams/thermografree/HEAD/docs/noise-analysis/SMARTS_295_Mac/Albedo/BrwnSand.dat -------------------------------------------------------------------------------- /docs/noise-analysis/SMARTS_295_Mac/Albedo/CONCRETE.DAT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loganwilliams/thermografree/HEAD/docs/noise-analysis/SMARTS_295_Mac/Albedo/CONCRETE.DAT -------------------------------------------------------------------------------- /docs/noise-analysis/SMARTS_295_Mac/Albedo/CSeaWatr.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loganwilliams/thermografree/HEAD/docs/noise-analysis/SMARTS_295_Mac/Albedo/CSeaWatr.dat -------------------------------------------------------------------------------- /docs/noise-analysis/SMARTS_295_Mac/Albedo/Conifers.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loganwilliams/thermografree/HEAD/docs/noise-analysis/SMARTS_295_Mac/Albedo/Conifers.dat -------------------------------------------------------------------------------- /docs/noise-analysis/SMARTS_295_Mac/Albedo/DRY_SAND.DAT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loganwilliams/thermografree/HEAD/docs/noise-analysis/SMARTS_295_Mac/Albedo/DRY_SAND.DAT -------------------------------------------------------------------------------- /docs/noise-analysis/SMARTS_295_Mac/Albedo/DarkLoam.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loganwilliams/thermografree/HEAD/docs/noise-analysis/SMARTS_295_Mac/Albedo/DarkLoam.dat -------------------------------------------------------------------------------- /docs/noise-analysis/SMARTS_295_Mac/Albedo/DarkSand.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loganwilliams/thermografree/HEAD/docs/noise-analysis/SMARTS_295_Mac/Albedo/DarkSand.dat -------------------------------------------------------------------------------- /docs/noise-analysis/SMARTS_295_Mac/Albedo/Decidous.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loganwilliams/thermografree/HEAD/docs/noise-analysis/SMARTS_295_Mac/Albedo/Decidous.dat -------------------------------------------------------------------------------- /docs/noise-analysis/SMARTS_295_Mac/Albedo/DryGrass.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loganwilliams/thermografree/HEAD/docs/noise-analysis/SMARTS_295_Mac/Albedo/DryGrass.dat -------------------------------------------------------------------------------- /docs/noise-analysis/SMARTS_295_Mac/Albedo/Dry_Soil.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loganwilliams/thermografree/HEAD/docs/noise-analysis/SMARTS_295_Mac/Albedo/Dry_Soil.dat -------------------------------------------------------------------------------- /docs/noise-analysis/SMARTS_295_Mac/Albedo/Dry_clay.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loganwilliams/thermografree/HEAD/docs/noise-analysis/SMARTS_295_Mac/Albedo/Dry_clay.dat -------------------------------------------------------------------------------- /docs/noise-analysis/SMARTS_295_Mac/Albedo/DuneSand.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loganwilliams/thermografree/HEAD/docs/noise-analysis/SMARTS_295_Mac/Albedo/DuneSand.dat -------------------------------------------------------------------------------- /docs/noise-analysis/SMARTS_295_Mac/Albedo/Fallow.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loganwilliams/thermografree/HEAD/docs/noise-analysis/SMARTS_295_Mac/Albedo/Fallow.dat -------------------------------------------------------------------------------- /docs/noise-analysis/SMARTS_295_Mac/Albedo/FibrGlss.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loganwilliams/thermografree/HEAD/docs/noise-analysis/SMARTS_295_Mac/Albedo/FibrGlss.dat -------------------------------------------------------------------------------- /docs/noise-analysis/SMARTS_295_Mac/Albedo/FineSnow.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loganwilliams/thermografree/HEAD/docs/noise-analysis/SMARTS_295_Mac/Albedo/FineSnow.dat -------------------------------------------------------------------------------- /docs/noise-analysis/SMARTS_295_Mac/Albedo/FirTrees.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loganwilliams/thermografree/HEAD/docs/noise-analysis/SMARTS_295_Mac/Albedo/FirTrees.dat -------------------------------------------------------------------------------- /docs/noise-analysis/SMARTS_295_Mac/Albedo/GRASS.DAT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loganwilliams/thermografree/HEAD/docs/noise-analysis/SMARTS_295_Mac/Albedo/GRASS.DAT -------------------------------------------------------------------------------- /docs/noise-analysis/SMARTS_295_Mac/Albedo/Gravel.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loganwilliams/thermografree/HEAD/docs/noise-analysis/SMARTS_295_Mac/Albedo/Gravel.dat -------------------------------------------------------------------------------- /docs/noise-analysis/SMARTS_295_Mac/Albedo/GrazingField.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loganwilliams/thermografree/HEAD/docs/noise-analysis/SMARTS_295_Mac/Albedo/GrazingField.dat -------------------------------------------------------------------------------- /docs/noise-analysis/SMARTS_295_Mac/Albedo/GrnGrass.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loganwilliams/thermografree/HEAD/docs/noise-analysis/SMARTS_295_Mac/Albedo/GrnGrass.dat -------------------------------------------------------------------------------- /docs/noise-analysis/SMARTS_295_Mac/Albedo/GrnlSnow.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loganwilliams/thermografree/HEAD/docs/noise-analysis/SMARTS_295_Mac/Albedo/GrnlSnow.dat -------------------------------------------------------------------------------- /docs/noise-analysis/SMARTS_295_Mac/Albedo/LiteClay.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loganwilliams/thermografree/HEAD/docs/noise-analysis/SMARTS_295_Mac/Albedo/LiteClay.dat -------------------------------------------------------------------------------- /docs/noise-analysis/SMARTS_295_Mac/Albedo/LiteLoam.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loganwilliams/thermografree/HEAD/docs/noise-analysis/SMARTS_295_Mac/Albedo/LiteLoam.dat -------------------------------------------------------------------------------- /docs/noise-analysis/SMARTS_295_Mac/Albedo/LiteSand.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loganwilliams/thermografree/HEAD/docs/noise-analysis/SMARTS_295_Mac/Albedo/LiteSand.dat -------------------------------------------------------------------------------- /docs/noise-analysis/SMARTS_295_Mac/Albedo/LiteSoil.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loganwilliams/thermografree/HEAD/docs/noise-analysis/SMARTS_295_Mac/Albedo/LiteSoil.dat -------------------------------------------------------------------------------- /docs/noise-analysis/SMARTS_295_Mac/Albedo/LngGrass.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loganwilliams/thermografree/HEAD/docs/noise-analysis/SMARTS_295_Mac/Albedo/LngGrass.dat -------------------------------------------------------------------------------- /docs/noise-analysis/SMARTS_295_Mac/Albedo/LwnGrass.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loganwilliams/thermografree/HEAD/docs/noise-analysis/SMARTS_295_Mac/Albedo/LwnGrass.dat -------------------------------------------------------------------------------- /docs/noise-analysis/SMARTS_295_Mac/Albedo/MEADOW1.DAT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loganwilliams/thermografree/HEAD/docs/noise-analysis/SMARTS_295_Mac/Albedo/MEADOW1.DAT -------------------------------------------------------------------------------- /docs/noise-analysis/SMARTS_295_Mac/Albedo/MEADOW2.DAT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loganwilliams/thermografree/HEAD/docs/noise-analysis/SMARTS_295_Mac/Albedo/MEADOW2.DAT -------------------------------------------------------------------------------- /docs/noise-analysis/SMARTS_295_Mac/Albedo/MeltSnow.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loganwilliams/thermografree/HEAD/docs/noise-analysis/SMARTS_295_Mac/Albedo/MeltSnow.dat -------------------------------------------------------------------------------- /docs/noise-analysis/SMARTS_295_Mac/Albedo/NEVE.DAT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loganwilliams/thermografree/HEAD/docs/noise-analysis/SMARTS_295_Mac/Albedo/NEVE.DAT -------------------------------------------------------------------------------- /docs/noise-analysis/SMARTS_295_Mac/Albedo/OSeaWatr.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loganwilliams/thermografree/HEAD/docs/noise-analysis/SMARTS_295_Mac/Albedo/OSeaWatr.dat -------------------------------------------------------------------------------- /docs/noise-analysis/SMARTS_295_Mac/Albedo/OakTree.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loganwilliams/thermografree/HEAD/docs/noise-analysis/SMARTS_295_Mac/Albedo/OakTree.dat -------------------------------------------------------------------------------- /docs/noise-analysis/SMARTS_295_Mac/Albedo/PINETREE.DAT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loganwilliams/thermografree/HEAD/docs/noise-analysis/SMARTS_295_Mac/Albedo/PINETREE.DAT -------------------------------------------------------------------------------- /docs/noise-analysis/SMARTS_295_Mac/Albedo/PaleLoam.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loganwilliams/thermografree/HEAD/docs/noise-analysis/SMARTS_295_Mac/Albedo/PaleLoam.dat -------------------------------------------------------------------------------- /docs/noise-analysis/SMARTS_295_Mac/Albedo/Pinion.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loganwilliams/thermografree/HEAD/docs/noise-analysis/SMARTS_295_Mac/Albedo/Pinion.dat -------------------------------------------------------------------------------- /docs/noise-analysis/SMARTS_295_Mac/Albedo/Plywood.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loganwilliams/thermografree/HEAD/docs/noise-analysis/SMARTS_295_Mac/Albedo/Plywood.dat -------------------------------------------------------------------------------- /docs/noise-analysis/SMARTS_295_Mac/Albedo/RConcrte.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loganwilliams/thermografree/HEAD/docs/noise-analysis/SMARTS_295_Mac/Albedo/RConcrte.dat -------------------------------------------------------------------------------- /docs/noise-analysis/SMARTS_295_Mac/Albedo/RYEGRASS.DAT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loganwilliams/thermografree/HEAD/docs/noise-analysis/SMARTS_295_Mac/Albedo/RYEGRASS.DAT -------------------------------------------------------------------------------- /docs/noise-analysis/SMARTS_295_Mac/Albedo/RedBrick.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loganwilliams/thermografree/HEAD/docs/noise-analysis/SMARTS_295_Mac/Albedo/RedBrick.dat -------------------------------------------------------------------------------- /docs/noise-analysis/SMARTS_295_Mac/Albedo/RoofTile.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loganwilliams/thermografree/HEAD/docs/noise-analysis/SMARTS_295_Mac/Albedo/RoofTile.dat -------------------------------------------------------------------------------- /docs/noise-analysis/SMARTS_295_Mac/Albedo/SNOW.DAT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loganwilliams/thermografree/HEAD/docs/noise-analysis/SMARTS_295_Mac/Albedo/SNOW.DAT -------------------------------------------------------------------------------- /docs/noise-analysis/SMARTS_295_Mac/Albedo/SOIL.DAT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loganwilliams/thermografree/HEAD/docs/noise-analysis/SMARTS_295_Mac/Albedo/SOIL.DAT -------------------------------------------------------------------------------- /docs/noise-analysis/SMARTS_295_Mac/Albedo/SageBrsh.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loganwilliams/thermografree/HEAD/docs/noise-analysis/SMARTS_295_Mac/Albedo/SageBrsh.dat -------------------------------------------------------------------------------- /docs/noise-analysis/SMARTS_295_Mac/Albedo/Seawater.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loganwilliams/thermografree/HEAD/docs/noise-analysis/SMARTS_295_Mac/Albedo/Seawater.dat -------------------------------------------------------------------------------- /docs/noise-analysis/SMARTS_295_Mac/Albedo/ShtMetal.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loganwilliams/thermografree/HEAD/docs/noise-analysis/SMARTS_295_Mac/Albedo/ShtMetal.dat -------------------------------------------------------------------------------- /docs/noise-analysis/SMARTS_295_Mac/Albedo/SndGravl.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loganwilliams/thermografree/HEAD/docs/noise-analysis/SMARTS_295_Mac/Albedo/SndGravl.dat -------------------------------------------------------------------------------- /docs/noise-analysis/SMARTS_295_Mac/Albedo/SolidIce.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loganwilliams/thermografree/HEAD/docs/noise-analysis/SMARTS_295_Mac/Albedo/SolidIce.dat -------------------------------------------------------------------------------- /docs/noise-analysis/SMARTS_295_Mac/Albedo/Spruce.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loganwilliams/thermografree/HEAD/docs/noise-analysis/SMARTS_295_Mac/Albedo/Spruce.dat -------------------------------------------------------------------------------- /docs/noise-analysis/SMARTS_295_Mac/Albedo/TallCorn.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loganwilliams/thermografree/HEAD/docs/noise-analysis/SMARTS_295_Mac/Albedo/TallCorn.dat -------------------------------------------------------------------------------- /docs/noise-analysis/SMARTS_295_Mac/Albedo/WETCLAY.DAT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loganwilliams/thermografree/HEAD/docs/noise-analysis/SMARTS_295_Mac/Albedo/WETCLAY.DAT -------------------------------------------------------------------------------- /docs/noise-analysis/SMARTS_295_Mac/Albedo/WHEAT.DAT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loganwilliams/thermografree/HEAD/docs/noise-analysis/SMARTS_295_Mac/Albedo/WHEAT.DAT -------------------------------------------------------------------------------- /docs/noise-analysis/SMARTS_295_Mac/Albedo/WITESAND.DAT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loganwilliams/thermografree/HEAD/docs/noise-analysis/SMARTS_295_Mac/Albedo/WITESAND.DAT -------------------------------------------------------------------------------- /docs/noise-analysis/SMARTS_295_Mac/Albedo/WetClay2.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loganwilliams/thermografree/HEAD/docs/noise-analysis/SMARTS_295_Mac/Albedo/WetClay2.dat -------------------------------------------------------------------------------- /docs/noise-analysis/SMARTS_295_Mac/Albedo/WetSSoil.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loganwilliams/thermografree/HEAD/docs/noise-analysis/SMARTS_295_Mac/Albedo/WetSSoil.dat -------------------------------------------------------------------------------- /docs/noise-analysis/SMARTS_295_Mac/Albedo/WetSilt.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loganwilliams/thermografree/HEAD/docs/noise-analysis/SMARTS_295_Mac/Albedo/WetSilt.dat -------------------------------------------------------------------------------- /docs/noise-analysis/SMARTS_295_Mac/Albedo/Wetland.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loganwilliams/thermografree/HEAD/docs/noise-analysis/SMARTS_295_Mac/Albedo/Wetland.dat -------------------------------------------------------------------------------- /docs/noise-analysis/SMARTS_295_Mac/Albedo/WiteVinl.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loganwilliams/thermografree/HEAD/docs/noise-analysis/SMARTS_295_Mac/Albedo/WiteVinl.dat -------------------------------------------------------------------------------- /docs/noise-analysis/SMARTS_295_Mac/CIE_data/VLambda.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loganwilliams/thermografree/HEAD/docs/noise-analysis/SMARTS_295_Mac/CIE_data/VLambda.dat -------------------------------------------------------------------------------- /docs/noise-analysis/SMARTS_295_Mac/CIE_data/VMLambda.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loganwilliams/thermografree/HEAD/docs/noise-analysis/SMARTS_295_Mac/CIE_data/VMLambda.dat -------------------------------------------------------------------------------- /docs/noise-analysis/SMARTS_295_Mac/Documentation/History.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loganwilliams/thermografree/HEAD/docs/noise-analysis/SMARTS_295_Mac/Documentation/History.txt -------------------------------------------------------------------------------- /docs/noise-analysis/SMARTS_295_Mac/Documentation/SMARTS295_Users_Manual_OSX.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loganwilliams/thermografree/HEAD/docs/noise-analysis/SMARTS_295_Mac/Documentation/SMARTS295_Users_Manual_OSX.pdf -------------------------------------------------------------------------------- /docs/noise-analysis/SMARTS_295_Mac/Examples/Example 1-USSA_ASTM&ISO_old_Std/ReadMe_Example1.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loganwilliams/thermografree/HEAD/docs/noise-analysis/SMARTS_295_Mac/Examples/Example 1-USSA_ASTM&ISO_old_Std/ReadMe_Example1.txt -------------------------------------------------------------------------------- /docs/noise-analysis/SMARTS_295_Mac/Examples/Example 1-USSA_ASTM&ISO_old_Std/smarts295.ext.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loganwilliams/thermografree/HEAD/docs/noise-analysis/SMARTS_295_Mac/Examples/Example 1-USSA_ASTM&ISO_old_Std/smarts295.ext.txt -------------------------------------------------------------------------------- /docs/noise-analysis/SMARTS_295_Mac/Examples/Example 1-USSA_ASTM&ISO_old_Std/smarts295.inp.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loganwilliams/thermografree/HEAD/docs/noise-analysis/SMARTS_295_Mac/Examples/Example 1-USSA_ASTM&ISO_old_Std/smarts295.inp.txt -------------------------------------------------------------------------------- /docs/noise-analysis/SMARTS_295_Mac/Examples/Example 1-USSA_ASTM&ISO_old_Std/smarts295.out.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loganwilliams/thermografree/HEAD/docs/noise-analysis/SMARTS_295_Mac/Examples/Example 1-USSA_ASTM&ISO_old_Std/smarts295.out.txt -------------------------------------------------------------------------------- /docs/noise-analysis/SMARTS_295_Mac/Examples/Example 10-High_UV_ref_spectrum/ReadMe_Example10.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loganwilliams/thermografree/HEAD/docs/noise-analysis/SMARTS_295_Mac/Examples/Example 10-High_UV_ref_spectrum/ReadMe_Example10.txt -------------------------------------------------------------------------------- /docs/noise-analysis/SMARTS_295_Mac/Examples/Example 10-High_UV_ref_spectrum/smarts295.ext.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loganwilliams/thermografree/HEAD/docs/noise-analysis/SMARTS_295_Mac/Examples/Example 10-High_UV_ref_spectrum/smarts295.ext.txt -------------------------------------------------------------------------------- /docs/noise-analysis/SMARTS_295_Mac/Examples/Example 10-High_UV_ref_spectrum/smarts295.inp.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loganwilliams/thermografree/HEAD/docs/noise-analysis/SMARTS_295_Mac/Examples/Example 10-High_UV_ref_spectrum/smarts295.inp.txt -------------------------------------------------------------------------------- /docs/noise-analysis/SMARTS_295_Mac/Examples/Example 10-High_UV_ref_spectrum/smarts295.out.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loganwilliams/thermografree/HEAD/docs/noise-analysis/SMARTS_295_Mac/Examples/Example 10-High_UV_ref_spectrum/smarts295.out.txt -------------------------------------------------------------------------------- /docs/noise-analysis/SMARTS_295_Mac/Examples/Example 11-Vertical_receivers/ReadMe_Example11.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loganwilliams/thermografree/HEAD/docs/noise-analysis/SMARTS_295_Mac/Examples/Example 11-Vertical_receivers/ReadMe_Example11.txt -------------------------------------------------------------------------------- /docs/noise-analysis/SMARTS_295_Mac/Examples/Example 11-Vertical_receivers/smarts295.ext.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loganwilliams/thermografree/HEAD/docs/noise-analysis/SMARTS_295_Mac/Examples/Example 11-Vertical_receivers/smarts295.ext.txt -------------------------------------------------------------------------------- /docs/noise-analysis/SMARTS_295_Mac/Examples/Example 11-Vertical_receivers/smarts295.out.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loganwilliams/thermografree/HEAD/docs/noise-analysis/SMARTS_295_Mac/Examples/Example 11-Vertical_receivers/smarts295.out.txt -------------------------------------------------------------------------------- /docs/noise-analysis/SMARTS_295_Mac/Examples/Example 2-Arizona_UV_tracking/ReadMe_Example2.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loganwilliams/thermografree/HEAD/docs/noise-analysis/SMARTS_295_Mac/Examples/Example 2-Arizona_UV_tracking/ReadMe_Example2.txt -------------------------------------------------------------------------------- /docs/noise-analysis/SMARTS_295_Mac/Examples/Example 2-Arizona_UV_tracking/smarts295.ext.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loganwilliams/thermografree/HEAD/docs/noise-analysis/SMARTS_295_Mac/Examples/Example 2-Arizona_UV_tracking/smarts295.ext.txt -------------------------------------------------------------------------------- /docs/noise-analysis/SMARTS_295_Mac/Examples/Example 2-Arizona_UV_tracking/smarts295.inp.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loganwilliams/thermografree/HEAD/docs/noise-analysis/SMARTS_295_Mac/Examples/Example 2-Arizona_UV_tracking/smarts295.inp.txt -------------------------------------------------------------------------------- /docs/noise-analysis/SMARTS_295_Mac/Examples/Example 2-Arizona_UV_tracking/smarts295.out.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loganwilliams/thermografree/HEAD/docs/noise-analysis/SMARTS_295_Mac/Examples/Example 2-Arizona_UV_tracking/smarts295.out.txt -------------------------------------------------------------------------------- /docs/noise-analysis/SMARTS_295_Mac/Examples/Example 2-Arizona_UV_tracking/smarts295.scn.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loganwilliams/thermografree/HEAD/docs/noise-analysis/SMARTS_295_Mac/Examples/Example 2-Arizona_UV_tracking/smarts295.scn.txt -------------------------------------------------------------------------------- /docs/noise-analysis/SMARTS_295_Mac/Examples/Example 3-USSA_UV/ReadMe_Example3.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loganwilliams/thermografree/HEAD/docs/noise-analysis/SMARTS_295_Mac/Examples/Example 3-USSA_UV/ReadMe_Example3.txt -------------------------------------------------------------------------------- /docs/noise-analysis/SMARTS_295_Mac/Examples/Example 3-USSA_UV/smarts295.ext.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loganwilliams/thermografree/HEAD/docs/noise-analysis/SMARTS_295_Mac/Examples/Example 3-USSA_UV/smarts295.ext.txt -------------------------------------------------------------------------------- /docs/noise-analysis/SMARTS_295_Mac/Examples/Example 3-USSA_UV/smarts295.inp.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loganwilliams/thermografree/HEAD/docs/noise-analysis/SMARTS_295_Mac/Examples/Example 3-USSA_UV/smarts295.inp.txt -------------------------------------------------------------------------------- /docs/noise-analysis/SMARTS_295_Mac/Examples/Example 3-USSA_UV/smarts295.out.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loganwilliams/thermografree/HEAD/docs/noise-analysis/SMARTS_295_Mac/Examples/Example 3-USSA_UV/smarts295.out.txt -------------------------------------------------------------------------------- /docs/noise-analysis/SMARTS_295_Mac/Examples/Example 4-UV_Spectrum_Summer/ReadMe_Example4.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loganwilliams/thermografree/HEAD/docs/noise-analysis/SMARTS_295_Mac/Examples/Example 4-UV_Spectrum_Summer/ReadMe_Example4.txt -------------------------------------------------------------------------------- /docs/noise-analysis/SMARTS_295_Mac/Examples/Example 4-UV_Spectrum_Summer/smarts295.ext.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loganwilliams/thermografree/HEAD/docs/noise-analysis/SMARTS_295_Mac/Examples/Example 4-UV_Spectrum_Summer/smarts295.ext.txt -------------------------------------------------------------------------------- /docs/noise-analysis/SMARTS_295_Mac/Examples/Example 4-UV_Spectrum_Summer/smarts295.inp.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loganwilliams/thermografree/HEAD/docs/noise-analysis/SMARTS_295_Mac/Examples/Example 4-UV_Spectrum_Summer/smarts295.inp.txt -------------------------------------------------------------------------------- /docs/noise-analysis/SMARTS_295_Mac/Examples/Example 4-UV_Spectrum_Summer/smarts295.out.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loganwilliams/thermografree/HEAD/docs/noise-analysis/SMARTS_295_Mac/Examples/Example 4-UV_Spectrum_Summer/smarts295.out.txt -------------------------------------------------------------------------------- /docs/noise-analysis/SMARTS_295_Mac/Examples/Example 4-UV_Spectrum_Summer/smarts295.scn.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loganwilliams/thermografree/HEAD/docs/noise-analysis/SMARTS_295_Mac/Examples/Example 4-UV_Spectrum_Summer/smarts295.scn.txt -------------------------------------------------------------------------------- /docs/noise-analysis/SMARTS_295_Mac/Examples/Example 5-USSA_085/ReadMe_Example5.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loganwilliams/thermografree/HEAD/docs/noise-analysis/SMARTS_295_Mac/Examples/Example 5-USSA_085/ReadMe_Example5.txt -------------------------------------------------------------------------------- /docs/noise-analysis/SMARTS_295_Mac/Examples/Example 5-USSA_085/smarts295.ext.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loganwilliams/thermografree/HEAD/docs/noise-analysis/SMARTS_295_Mac/Examples/Example 5-USSA_085/smarts295.ext.txt -------------------------------------------------------------------------------- /docs/noise-analysis/SMARTS_295_Mac/Examples/Example 5-USSA_085/smarts295.inp.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loganwilliams/thermografree/HEAD/docs/noise-analysis/SMARTS_295_Mac/Examples/Example 5-USSA_085/smarts295.inp.txt -------------------------------------------------------------------------------- /docs/noise-analysis/SMARTS_295_Mac/Examples/Example 5-USSA_085/smarts295.out.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loganwilliams/thermografree/HEAD/docs/noise-analysis/SMARTS_295_Mac/Examples/Example 5-USSA_085/smarts295.out.txt -------------------------------------------------------------------------------- /docs/noise-analysis/SMARTS_295_Mac/Examples/Example 6-USSA_084/ReadMe_Example6.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loganwilliams/thermografree/HEAD/docs/noise-analysis/SMARTS_295_Mac/Examples/Example 6-USSA_084/ReadMe_Example6.txt -------------------------------------------------------------------------------- /docs/noise-analysis/SMARTS_295_Mac/Examples/Example 6-USSA_084/smarts295.ext.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loganwilliams/thermografree/HEAD/docs/noise-analysis/SMARTS_295_Mac/Examples/Example 6-USSA_084/smarts295.ext.txt -------------------------------------------------------------------------------- /docs/noise-analysis/SMARTS_295_Mac/Examples/Example 6-USSA_084/smarts295.inp.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loganwilliams/thermografree/HEAD/docs/noise-analysis/SMARTS_295_Mac/Examples/Example 6-USSA_084/smarts295.inp.txt -------------------------------------------------------------------------------- /docs/noise-analysis/SMARTS_295_Mac/Examples/Example 6-USSA_084/smarts295.out.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loganwilliams/thermografree/HEAD/docs/noise-analysis/SMARTS_295_Mac/Examples/Example 6-USSA_084/smarts295.out.txt -------------------------------------------------------------------------------- /docs/noise-analysis/SMARTS_295_Mac/Examples/Example 7-Phoenix_summer_UV/Icon : -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /docs/noise-analysis/SMARTS_295_Mac/Examples/Example 7-Phoenix_summer_UV/ReadMe_Example7.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loganwilliams/thermografree/HEAD/docs/noise-analysis/SMARTS_295_Mac/Examples/Example 7-Phoenix_summer_UV/ReadMe_Example7.txt -------------------------------------------------------------------------------- /docs/noise-analysis/SMARTS_295_Mac/Examples/Example 7-Phoenix_summer_UV/smarts295.ext.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loganwilliams/thermografree/HEAD/docs/noise-analysis/SMARTS_295_Mac/Examples/Example 7-Phoenix_summer_UV/smarts295.ext.txt -------------------------------------------------------------------------------- /docs/noise-analysis/SMARTS_295_Mac/Examples/Example 7-Phoenix_summer_UV/smarts295.inp.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loganwilliams/thermografree/HEAD/docs/noise-analysis/SMARTS_295_Mac/Examples/Example 7-Phoenix_summer_UV/smarts295.inp.txt -------------------------------------------------------------------------------- /docs/noise-analysis/SMARTS_295_Mac/Examples/Example 7-Phoenix_summer_UV/smarts295.out.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loganwilliams/thermografree/HEAD/docs/noise-analysis/SMARTS_295_Mac/Examples/Example 7-Phoenix_summer_UV/smarts295.out.txt -------------------------------------------------------------------------------- /docs/noise-analysis/SMARTS_295_Mac/Examples/Example 8-Phoenix_summer_day_UV/Icon : -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /docs/noise-analysis/SMARTS_295_Mac/Examples/Example 8-Phoenix_summer_day_UV/ReadMe_Example8.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loganwilliams/thermografree/HEAD/docs/noise-analysis/SMARTS_295_Mac/Examples/Example 8-Phoenix_summer_day_UV/ReadMe_Example8.txt -------------------------------------------------------------------------------- /docs/noise-analysis/SMARTS_295_Mac/Examples/Example 8-Phoenix_summer_day_UV/smarts295.inp.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loganwilliams/thermografree/HEAD/docs/noise-analysis/SMARTS_295_Mac/Examples/Example 8-Phoenix_summer_day_UV/smarts295.inp.txt -------------------------------------------------------------------------------- /docs/noise-analysis/SMARTS_295_Mac/Examples/Example 8-Phoenix_summer_day_UV/smarts295.out.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loganwilliams/thermografree/HEAD/docs/noise-analysis/SMARTS_295_Mac/Examples/Example 8-Phoenix_summer_day_UV/smarts295.out.txt -------------------------------------------------------------------------------- /docs/noise-analysis/SMARTS_295_Mac/Examples/Example 9-NREL_summer_scan/Icon : -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /docs/noise-analysis/SMARTS_295_Mac/Examples/Example 9-NREL_summer_scan/ReadMe_Example9.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loganwilliams/thermografree/HEAD/docs/noise-analysis/SMARTS_295_Mac/Examples/Example 9-NREL_summer_scan/ReadMe_Example9.txt -------------------------------------------------------------------------------- /docs/noise-analysis/SMARTS_295_Mac/Examples/Example 9-NREL_summer_scan/smarts295.inp.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loganwilliams/thermografree/HEAD/docs/noise-analysis/SMARTS_295_Mac/Examples/Example 9-NREL_summer_scan/smarts295.inp.txt -------------------------------------------------------------------------------- /docs/noise-analysis/SMARTS_295_Mac/Examples/Example 9-NREL_summer_scan/smarts295.out.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loganwilliams/thermografree/HEAD/docs/noise-analysis/SMARTS_295_Mac/Examples/Example 9-NREL_summer_scan/smarts295.out.txt -------------------------------------------------------------------------------- /docs/noise-analysis/SMARTS_295_Mac/Examples/Example 9-NREL_summer_scan/smarts295.scn.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loganwilliams/thermografree/HEAD/docs/noise-analysis/SMARTS_295_Mac/Examples/Example 9-NREL_summer_scan/smarts295.scn.txt -------------------------------------------------------------------------------- /docs/noise-analysis/SMARTS_295_Mac/Gases/Abs_BrO.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loganwilliams/thermografree/HEAD/docs/noise-analysis/SMARTS_295_Mac/Gases/Abs_BrO.dat -------------------------------------------------------------------------------- /docs/noise-analysis/SMARTS_295_Mac/Gases/Abs_CH2O.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loganwilliams/thermografree/HEAD/docs/noise-analysis/SMARTS_295_Mac/Gases/Abs_CH2O.dat -------------------------------------------------------------------------------- /docs/noise-analysis/SMARTS_295_Mac/Gases/Abs_CH4.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loganwilliams/thermografree/HEAD/docs/noise-analysis/SMARTS_295_Mac/Gases/Abs_CH4.dat -------------------------------------------------------------------------------- /docs/noise-analysis/SMARTS_295_Mac/Gases/Abs_CO.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loganwilliams/thermografree/HEAD/docs/noise-analysis/SMARTS_295_Mac/Gases/Abs_CO.dat -------------------------------------------------------------------------------- /docs/noise-analysis/SMARTS_295_Mac/Gases/Abs_CO2.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loganwilliams/thermografree/HEAD/docs/noise-analysis/SMARTS_295_Mac/Gases/Abs_CO2.dat -------------------------------------------------------------------------------- /docs/noise-analysis/SMARTS_295_Mac/Gases/Abs_ClNO.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loganwilliams/thermografree/HEAD/docs/noise-analysis/SMARTS_295_Mac/Gases/Abs_ClNO.dat -------------------------------------------------------------------------------- /docs/noise-analysis/SMARTS_295_Mac/Gases/Abs_H2O.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loganwilliams/thermografree/HEAD/docs/noise-analysis/SMARTS_295_Mac/Gases/Abs_H2O.dat -------------------------------------------------------------------------------- /docs/noise-analysis/SMARTS_295_Mac/Gases/Abs_HNO2.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loganwilliams/thermografree/HEAD/docs/noise-analysis/SMARTS_295_Mac/Gases/Abs_HNO2.dat -------------------------------------------------------------------------------- /docs/noise-analysis/SMARTS_295_Mac/Gases/Abs_HNO3.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loganwilliams/thermografree/HEAD/docs/noise-analysis/SMARTS_295_Mac/Gases/Abs_HNO3.dat -------------------------------------------------------------------------------- /docs/noise-analysis/SMARTS_295_Mac/Gases/Abs_N2.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loganwilliams/thermografree/HEAD/docs/noise-analysis/SMARTS_295_Mac/Gases/Abs_N2.dat -------------------------------------------------------------------------------- /docs/noise-analysis/SMARTS_295_Mac/Gases/Abs_N2O.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loganwilliams/thermografree/HEAD/docs/noise-analysis/SMARTS_295_Mac/Gases/Abs_N2O.dat -------------------------------------------------------------------------------- /docs/noise-analysis/SMARTS_295_Mac/Gases/Abs_NH3.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loganwilliams/thermografree/HEAD/docs/noise-analysis/SMARTS_295_Mac/Gases/Abs_NH3.dat -------------------------------------------------------------------------------- /docs/noise-analysis/SMARTS_295_Mac/Gases/Abs_NO.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loganwilliams/thermografree/HEAD/docs/noise-analysis/SMARTS_295_Mac/Gases/Abs_NO.dat -------------------------------------------------------------------------------- /docs/noise-analysis/SMARTS_295_Mac/Gases/Abs_NO2.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loganwilliams/thermografree/HEAD/docs/noise-analysis/SMARTS_295_Mac/Gases/Abs_NO2.dat -------------------------------------------------------------------------------- /docs/noise-analysis/SMARTS_295_Mac/Gases/Abs_NO3.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loganwilliams/thermografree/HEAD/docs/noise-analysis/SMARTS_295_Mac/Gases/Abs_NO3.dat -------------------------------------------------------------------------------- /docs/noise-analysis/SMARTS_295_Mac/Gases/Abs_O2.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loganwilliams/thermografree/HEAD/docs/noise-analysis/SMARTS_295_Mac/Gases/Abs_O2.dat -------------------------------------------------------------------------------- /docs/noise-analysis/SMARTS_295_Mac/Gases/Abs_O3IR.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loganwilliams/thermografree/HEAD/docs/noise-analysis/SMARTS_295_Mac/Gases/Abs_O3IR.dat -------------------------------------------------------------------------------- /docs/noise-analysis/SMARTS_295_Mac/Gases/Abs_O3UV.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loganwilliams/thermografree/HEAD/docs/noise-analysis/SMARTS_295_Mac/Gases/Abs_O3UV.dat -------------------------------------------------------------------------------- /docs/noise-analysis/SMARTS_295_Mac/Gases/Abs_O4.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loganwilliams/thermografree/HEAD/docs/noise-analysis/SMARTS_295_Mac/Gases/Abs_O4.dat -------------------------------------------------------------------------------- /docs/noise-analysis/SMARTS_295_Mac/Gases/Abs_SO2I.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loganwilliams/thermografree/HEAD/docs/noise-analysis/SMARTS_295_Mac/Gases/Abs_SO2I.dat -------------------------------------------------------------------------------- /docs/noise-analysis/SMARTS_295_Mac/Gases/Abs_SO2U.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loganwilliams/thermografree/HEAD/docs/noise-analysis/SMARTS_295_Mac/Gases/Abs_SO2U.dat -------------------------------------------------------------------------------- /docs/noise-analysis/SMARTS_295_Mac/INPUT/Example.inp.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loganwilliams/thermografree/HEAD/docs/noise-analysis/SMARTS_295_Mac/INPUT/Example.inp.txt -------------------------------------------------------------------------------- /docs/noise-analysis/SMARTS_295_Mac/INPUT/Test_for_July.inp.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loganwilliams/thermografree/HEAD/docs/noise-analysis/SMARTS_295_Mac/INPUT/Test_for_July.inp.txt -------------------------------------------------------------------------------- /docs/noise-analysis/SMARTS_295_Mac/INPUT/smarts295.inp.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loganwilliams/thermografree/HEAD/docs/noise-analysis/SMARTS_295_Mac/INPUT/smarts295.inp.txt -------------------------------------------------------------------------------- /docs/noise-analysis/SMARTS_295_Mac/OUTPUT/Example.ext.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loganwilliams/thermografree/HEAD/docs/noise-analysis/SMARTS_295_Mac/OUTPUT/Example.ext.txt -------------------------------------------------------------------------------- /docs/noise-analysis/SMARTS_295_Mac/OUTPUT/Example.out.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loganwilliams/thermografree/HEAD/docs/noise-analysis/SMARTS_295_Mac/OUTPUT/Example.out.txt -------------------------------------------------------------------------------- /docs/noise-analysis/SMARTS_295_Mac/QuickStart_Mac.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loganwilliams/thermografree/HEAD/docs/noise-analysis/SMARTS_295_Mac/QuickStart_Mac.pdf -------------------------------------------------------------------------------- /docs/noise-analysis/SMARTS_295_Mac/Solar/Spctrm_0.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loganwilliams/thermografree/HEAD/docs/noise-analysis/SMARTS_295_Mac/Solar/Spctrm_0.dat -------------------------------------------------------------------------------- /docs/noise-analysis/SMARTS_295_Mac/Solar/Spctrm_1.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loganwilliams/thermografree/HEAD/docs/noise-analysis/SMARTS_295_Mac/Solar/Spctrm_1.dat -------------------------------------------------------------------------------- /docs/noise-analysis/SMARTS_295_Mac/Solar/Spctrm_2.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loganwilliams/thermografree/HEAD/docs/noise-analysis/SMARTS_295_Mac/Solar/Spctrm_2.dat -------------------------------------------------------------------------------- /docs/noise-analysis/SMARTS_295_Mac/Solar/Spctrm_3.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loganwilliams/thermografree/HEAD/docs/noise-analysis/SMARTS_295_Mac/Solar/Spctrm_3.dat -------------------------------------------------------------------------------- /docs/noise-analysis/SMARTS_295_Mac/Solar/Spctrm_4.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loganwilliams/thermografree/HEAD/docs/noise-analysis/SMARTS_295_Mac/Solar/Spctrm_4.dat -------------------------------------------------------------------------------- /docs/noise-analysis/SMARTS_295_Mac/Solar/Spctrm_5.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loganwilliams/thermografree/HEAD/docs/noise-analysis/SMARTS_295_Mac/Solar/Spctrm_5.dat -------------------------------------------------------------------------------- /docs/noise-analysis/SMARTS_295_Mac/Solar/Spctrm_6.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loganwilliams/thermografree/HEAD/docs/noise-analysis/SMARTS_295_Mac/Solar/Spctrm_6.dat -------------------------------------------------------------------------------- /docs/noise-analysis/SMARTS_295_Mac/Solar/Spctrm_7.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loganwilliams/thermografree/HEAD/docs/noise-analysis/SMARTS_295_Mac/Solar/Spctrm_7.dat -------------------------------------------------------------------------------- /docs/noise-analysis/SMARTS_295_Mac/Solar/Spctrm_8.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loganwilliams/thermografree/HEAD/docs/noise-analysis/SMARTS_295_Mac/Solar/Spctrm_8.dat -------------------------------------------------------------------------------- /docs/noise-analysis/SMARTS_295_Mac/Solar/Spctrm_U.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loganwilliams/thermografree/HEAD/docs/noise-analysis/SMARTS_295_Mac/Solar/Spctrm_U.dat -------------------------------------------------------------------------------- /docs/noise-analysis/SMARTS_295_Mac/Source_code/smarts295.f: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loganwilliams/thermografree/HEAD/docs/noise-analysis/SMARTS_295_Mac/Source_code/smarts295.f -------------------------------------------------------------------------------- /docs/noise-analysis/SMARTS_295_Mac/Source_code/smarts295_cmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loganwilliams/thermografree/HEAD/docs/noise-analysis/SMARTS_295_Mac/Source_code/smarts295_cmd -------------------------------------------------------------------------------- /docs/noise-analysis/SMARTS_295_Mac/Source_code/smarts295_cmd.bak: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loganwilliams/thermografree/HEAD/docs/noise-analysis/SMARTS_295_Mac/Source_code/smarts295_cmd.bak -------------------------------------------------------------------------------- /docs/noise-analysis/SMARTS_295_Mac/Source_code/smarts295script.csh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loganwilliams/thermografree/HEAD/docs/noise-analysis/SMARTS_295_Mac/Source_code/smarts295script.csh -------------------------------------------------------------------------------- /docs/noise-analysis/SMARTS_295_Mac/smarts295.command: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | cd "`dirname "$0"`" 3 | Source_code/smarts295_cmd -------------------------------------------------------------------------------- /docs/noise-analysis/SMARTS_295_Mac/smarts295.ext.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loganwilliams/thermografree/HEAD/docs/noise-analysis/SMARTS_295_Mac/smarts295.ext.txt -------------------------------------------------------------------------------- /docs/noise-analysis/SMARTS_295_Mac/smarts295.inp.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loganwilliams/thermografree/HEAD/docs/noise-analysis/SMARTS_295_Mac/smarts295.inp.txt -------------------------------------------------------------------------------- /docs/noise-analysis/SMARTS_295_Mac/smarts295.out.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loganwilliams/thermografree/HEAD/docs/noise-analysis/SMARTS_295_Mac/smarts295.out.txt -------------------------------------------------------------------------------- /docs/noise-analysis/SMARTS_295_Mac/smarts295bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loganwilliams/thermografree/HEAD/docs/noise-analysis/SMARTS_295_Mac/smarts295bat -------------------------------------------------------------------------------- /docs/noise-analysis/pm_filter.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loganwilliams/thermografree/HEAD/docs/noise-analysis/pm_filter.csv -------------------------------------------------------------------------------- /docs/noise-analysis/smarts.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loganwilliams/thermografree/HEAD/docs/noise-analysis/smarts.txt -------------------------------------------------------------------------------- /docs/noise-analysis/solar-data.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loganwilliams/thermografree/HEAD/docs/noise-analysis/solar-data.ipynb -------------------------------------------------------------------------------- /docs/results/burner.mov: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loganwilliams/thermografree/HEAD/docs/results/burner.mov -------------------------------------------------------------------------------- /src/capture_display.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loganwilliams/thermografree/HEAD/src/capture_display.py -------------------------------------------------------------------------------- /src/dualcam.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loganwilliams/thermografree/HEAD/src/dualcam.py -------------------------------------------------------------------------------- /src/htpa.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loganwilliams/thermografree/HEAD/src/htpa.py --------------------------------------------------------------------------------