├── .gitignore ├── README.md ├── environment.yml ├── literature ├── Piecing_together_the_past.pdf └── Sellwood_Valdez_Mesozoic_climates_rock_record_SedGeol2006.pdf ├── misc ├── data_predictors_anytime.py ├── data_preprocess_miocene.py ├── maptut.py ├── plot_prediction.ipynb ├── plot_prediction.py └── requirements.txt ├── processed_dataset ├── grids │ ├── README.md │ ├── params.txt │ ├── predictor_data_101Ma_land_CosAngleShore.tif │ ├── predictor_data_101Ma_land_DistShore.tif │ ├── predictor_data_101Ma_land_Elevation.tif │ ├── predictor_data_101Ma_land_SinAngleShore.tif │ ├── predictor_data_101Ma_land_SqrtDist.tif │ ├── predictor_data_101Ma_land_SqrtElevation.tif │ ├── predictor_data_129Ma_land_CosAngleShore.tif │ ├── predictor_data_129Ma_land_DistShore.tif │ ├── predictor_data_129Ma_land_Elevation.tif │ ├── predictor_data_129Ma_land_SinAngleShore.tif │ ├── predictor_data_129Ma_land_SqrtDist.tif │ ├── predictor_data_129Ma_land_SqrtElevation.tif │ ├── predictor_data_14Ma_land_CosAngleShore.tif │ ├── predictor_data_14Ma_land_DistShore.tif │ ├── predictor_data_14Ma_land_Elevation.tif │ ├── predictor_data_14Ma_land_SinAngleShore.tif │ ├── predictor_data_14Ma_land_SqrtDist.tif │ ├── predictor_data_14Ma_land_SqrtElevation.tif │ ├── predictor_data_154Ma_land_CosAngleShore.tif │ ├── predictor_data_154Ma_land_DistShore.tif │ ├── predictor_data_154Ma_land_Elevation.tif │ ├── predictor_data_154Ma_land_SinAngleShore.tif │ ├── predictor_data_154Ma_land_SqrtDist.tif │ ├── predictor_data_154Ma_land_SqrtElevation.tif │ ├── predictor_data_182Ma_land_CosAngleShore.tif │ ├── predictor_data_182Ma_land_DistShore.tif │ ├── predictor_data_182Ma_land_Elevation.tif │ ├── predictor_data_182Ma_land_SinAngleShore.tif │ ├── predictor_data_182Ma_land_SqrtDist.tif │ ├── predictor_data_182Ma_land_SqrtElevation.tif │ ├── predictor_data_219Ma_land_CosAngleShore.tif │ ├── predictor_data_219Ma_land_DistShore.tif │ ├── predictor_data_219Ma_land_Elevation.tif │ ├── predictor_data_219Ma_land_SinAngleShore.tif │ ├── predictor_data_219Ma_land_SqrtDist.tif │ ├── predictor_data_219Ma_land_SqrtElevation.tif │ ├── predictor_data_242Ma_land_CosAngleShore.tif │ ├── predictor_data_242Ma_land_DistShore.tif │ ├── predictor_data_242Ma_land_Elevation.tif │ ├── predictor_data_242Ma_land_SinAngleShore.tif │ ├── predictor_data_242Ma_land_SqrtDist.tif │ ├── predictor_data_242Ma_land_SqrtElevation.tif │ ├── predictor_data_249Ma_land_CosAngleShore.tif │ ├── predictor_data_249Ma_land_DistShore.tif │ ├── predictor_data_249Ma_land_Elevation.tif │ ├── predictor_data_249Ma_land_SinAngleShore.tif │ ├── predictor_data_249Ma_land_SqrtDist.tif │ ├── predictor_data_249Ma_land_SqrtElevation.tif │ ├── predictor_data_28Ma_land_CosAngleShore.tif │ ├── predictor_data_28Ma_land_DistShore.tif │ ├── predictor_data_28Ma_land_Elevation.tif │ ├── predictor_data_28Ma_land_SinAngleShore.tif │ ├── predictor_data_28Ma_land_SqrtDist.tif │ ├── predictor_data_28Ma_land_SqrtElevation.tif │ ├── predictor_data_40Ma_land_CosAngleShore.tif │ ├── predictor_data_40Ma_land_DistShore.tif │ ├── predictor_data_40Ma_land_Elevation.tif │ ├── predictor_data_40Ma_land_SinAngleShore.tif │ ├── predictor_data_40Ma_land_SqrtDist.tif │ ├── predictor_data_40Ma_land_SqrtElevation.tif │ ├── predictor_data_51Ma_land_CosAngleShore.tif │ ├── predictor_data_51Ma_land_DistShore.tif │ ├── predictor_data_51Ma_land_Elevation.tif │ ├── predictor_data_51Ma_land_SinAngleShore.tif │ ├── predictor_data_51Ma_land_SqrtDist.tif │ ├── predictor_data_51Ma_land_SqrtElevation.tif │ ├── predictor_data_61Ma_land_CosAngleShore.tif │ ├── predictor_data_61Ma_land_DistShore.tif │ ├── predictor_data_61Ma_land_Elevation.tif │ ├── predictor_data_61Ma_land_SinAngleShore.tif │ ├── predictor_data_61Ma_land_SqrtDist.tif │ ├── predictor_data_61Ma_land_SqrtElevation.tif │ ├── predictor_data_77Ma_land_CosAngleShore.tif │ ├── predictor_data_77Ma_land_DistShore.tif │ ├── predictor_data_77Ma_land_Elevation.tif │ ├── predictor_data_77Ma_land_SinAngleShore.tif │ ├── predictor_data_77Ma_land_SqrtDist.tif │ └── predictor_data_77Ma_land_SqrtElevation.tif ├── learning_data_miocene_land.csv ├── predictor_data_101Ma_land.csv ├── predictor_data_129Ma_land.csv ├── predictor_data_14Ma_land.csv ├── predictor_data_154Ma_land.csv ├── predictor_data_182Ma_land.csv ├── predictor_data_219Ma_land.csv ├── predictor_data_242Ma_land.csv ├── predictor_data_249Ma_land.csv ├── predictor_data_28Ma_land.csv ├── predictor_data_40Ma_land.csv ├── predictor_data_51Ma_land.csv ├── predictor_data_61Ma_land.csv ├── predictor_data_77Ma_land.csv └── updateddata2019 │ ├── learning_data_14_land.csv │ ├── learning_data_38_land_2PIC.csv │ └── learning_data_38_land_4PIC.csv ├── raw_data ├── Boucot_etal_lithology_data_MapFolio2013.pdf ├── Data_deposits │ ├── precipitation_gpmodel_data.csv │ ├── predictor_data_Eocene_deposit.csv │ ├── predictor_data_LateCretaceous_deposit.csv │ ├── predictor_data_Miocene_deposit.csv │ ├── predictor_data_Oligocene_deposit.csv │ └── predictor_data_Paleocene_deposit.csv ├── LithData_PaleoXY_Matthews2016_20180226.csv ├── LithologyCodes.csv ├── Lithology_data_Boucot_etal_2013 │ ├── Reconstructed_Miocene │ │ └── Lithology_15.00Ma.xy │ └── Shapefiles_All │ │ ├── PresentDay_LithData_Matthews2016_410-0Ma_AllTypes.dbf │ │ ├── PresentDay_LithData_Matthews2016_410-0Ma_AllTypes.prj │ │ ├── PresentDay_LithData_Matthews2016_410-0Ma_AllTypes.sbn │ │ ├── PresentDay_LithData_Matthews2016_410-0Ma_AllTypes.sbx │ │ ├── PresentDay_LithData_Matthews2016_410-0Ma_AllTypes.shp │ │ └── PresentDay_LithData_Matthews2016_410-0Ma_AllTypes.shx ├── PRECT_Average_annum.grd ├── Percipitation_geologictimescale │ ├── Herold_etal_modelling_Miocene_climate_optimum_JClimate_2011.pdf │ ├── MadhuraAnalysis │ │ └── GPtests │ │ │ ├── 2018-04-09_4deg │ │ │ ├── precipitation_gpmodel_data.csv │ │ │ └── ymodel_chain_area.npy │ │ │ ├── 2018-04-10_3deg │ │ │ └── precipitation_gpmodel_data.csv │ │ │ ├── 2018-04-17_3deg │ │ │ └── plots_niter │ │ │ │ ├── niter_Alpha.png │ │ │ │ ├── niter_Coal Deposits.png │ │ │ │ ├── niter_Elevation.png │ │ │ │ ├── niter_Evaporites Deposits.png │ │ │ │ ├── niter_GP1.png │ │ │ │ ├── niter_GP2.png │ │ │ │ ├── niter_Glacial Deposits.png │ │ │ │ ├── niter_Sigma.png │ │ │ │ └── niter_Sqrt Distance.png │ │ │ ├── 2018-05-02_3deg │ │ │ └── plots_niter │ │ │ │ ├── niter_Alpha.png │ │ │ │ ├── niter_Coal Deposits.png │ │ │ │ ├── niter_Distance to Shore.png │ │ │ │ ├── niter_Evaporites Deposits.png │ │ │ │ ├── niter_GP1.png │ │ │ │ ├── niter_GP2.png │ │ │ │ ├── niter_Glacial Deposits.png │ │ │ │ └── niter_Sigma.png │ │ │ ├── 2018-05-07a_3deg │ │ │ ├── data │ │ │ │ └── precipitation_gpmodel_data.csv │ │ │ └── results │ │ │ │ ├── Data_ModelBLR_1d.png │ │ │ │ ├── inputdata_X_gp.csv │ │ │ │ ├── plots_niter │ │ │ │ └── niter_Coal Deposits.png │ │ │ │ ├── sampler_chain.npy │ │ │ │ └── ymodel_chain_area.npy │ │ │ ├── 2018-05-07b_3deg │ │ │ └── results │ │ │ │ ├── cornerplot_all.png │ │ │ │ ├── inputdata_X_gp.csv │ │ │ │ ├── plots_niter │ │ │ │ ├── niter_Coal Deposits.png │ │ │ │ ├── niter_Evaporites Deposits.png │ │ │ │ ├── niter_GP1.png │ │ │ │ └── niter_Northern shore (cos).png │ │ │ │ └── sampler_chain.npy │ │ │ ├── 2018-05-09_3deg │ │ │ ├── data │ │ │ │ └── precipitation_gpmodel_data.csv │ │ │ └── results │ │ │ │ ├── cornerplot_all.png │ │ │ │ └── ymodel_chain_area.npy │ │ │ ├── 2018-05-10a_3deg │ │ │ ├── data │ │ │ │ └── precipitation_gpmodel_data.csv │ │ │ └── results │ │ │ │ ├── Data_ModelBLR_1d.png │ │ │ │ ├── inputdata_X_blr.csv │ │ │ │ ├── inputdata_X_gp.csv │ │ │ │ └── ymodel_chain_area.npy │ │ │ ├── 2018-05-10b_3deg │ │ │ ├── data │ │ │ │ └── precipitation_gpmodel_data.csv │ │ │ └── results │ │ │ │ ├── Data_ModelBLR_1d.png │ │ │ │ ├── Data_vs_Model_1d.png │ │ │ │ ├── cornerplot_all.png │ │ │ │ ├── inputdata_X_gp.csv │ │ │ │ └── ymodel_chain_area.npy │ │ │ ├── 2018-05-10c_3deg │ │ │ └── results │ │ │ │ ├── inputdata_X_blr.csv │ │ │ │ ├── plots_niter │ │ │ │ └── niter_Coal Deposits.png │ │ │ │ └── ymodel_chain_area.npy │ │ │ ├── 2018-05-14_3deg │ │ │ ├── data │ │ │ │ └── precipitation_gpmodel_data.csv │ │ │ └── results │ │ │ │ ├── Data_ModelBLR_1d.png │ │ │ │ ├── cornerplot_all.png │ │ │ │ └── inputdata_X_blr.csv │ │ │ ├── 2018-05-15_3deg │ │ │ └── results │ │ │ │ ├── Data_ModelBLR_1d.png │ │ │ │ ├── Data_vs_Model_1d.png │ │ │ │ ├── inputdata_X_blr.csv │ │ │ │ ├── plots_niter │ │ │ │ └── niter_Alpha.png │ │ │ │ └── sampler_chain.npy │ │ │ ├── 2018-05-21a_3deg │ │ │ ├── data │ │ │ │ └── precipitation_gpmodel_data.csv │ │ │ └── results │ │ │ │ ├── Data_ModelBLR_1d.png │ │ │ │ ├── inputdata_X_blr.csv │ │ │ │ └── plots_niter │ │ │ │ └── niter_GP1.png │ │ │ ├── 2018-05-21b_3deg │ │ │ ├── data │ │ │ │ └── precipitation_gpmodel_data.csv │ │ │ └── results │ │ │ │ ├── Data_vs_Model_1d.png │ │ │ │ ├── inputdata_X_blr.csv │ │ │ │ └── plots_niter │ │ │ │ ├── niter_Elevation.png │ │ │ │ └── niter_GP2.png │ │ │ ├── 2018-05-22a_3deg │ │ │ ├── data │ │ │ │ └── precipitation_gpmodel_data.csv │ │ │ └── results │ │ │ │ ├── Data_ModelBLR_1d.png │ │ │ │ ├── Data_vs_Model_1d.png │ │ │ │ ├── inputdata_X_blr.csv │ │ │ │ ├── plots_niter │ │ │ │ └── niter_Evaporites Deposits.png │ │ │ │ └── sampler_chain.npy │ │ │ ├── 2018-05-22b_3deg │ │ │ ├── data │ │ │ │ └── precipitation_gpmodel_data.csv │ │ │ └── results │ │ │ │ ├── Data_ModelBLR_1d.png │ │ │ │ ├── inputdata_X_blr.csv │ │ │ │ ├── plots_niter │ │ │ │ ├── niter_Alpha.png │ │ │ │ ├── niter_GP2.png │ │ │ │ ├── niter_Glacial Deposits.png │ │ │ │ └── niter_Sigma.png │ │ │ │ └── sampler_chain.npy │ │ │ ├── 2018-05-27a_3deg │ │ │ ├── data │ │ │ │ └── precipitation_gpmodel_data.csv │ │ │ └── results │ │ │ │ ├── Data_ModelBLR_1d.png │ │ │ │ ├── Data_vs_Model_1d.png │ │ │ │ ├── cornerplot_all.png │ │ │ │ └── inputdata_X_blr.csv │ │ │ ├── 2018-05-27b_3deg │ │ │ └── results │ │ │ │ ├── Data_vs_Model_1d.png │ │ │ │ └── cornerplot_all.png │ │ │ ├── 2018-05-28a_3deg │ │ │ └── results │ │ │ │ ├── Data_vs_Model_1d.png │ │ │ │ └── inputdata_X_blr.csv │ │ │ ├── 2018-05-28c_3deg │ │ │ └── results │ │ │ │ ├── Data_ModelBLR_1d.png │ │ │ │ ├── cornerplot_all.png │ │ │ │ ├── inputdata_X_blr.csv │ │ │ │ └── ymodel_chain_area.npy │ │ │ ├── 2018-05-28d_3deg │ │ │ └── results │ │ │ │ ├── Data_ModelBLR_1d.png │ │ │ │ └── ymodel_chain_area.npy │ │ │ ├── 2018-05-28e_3deg │ │ │ └── results │ │ │ │ ├── plots_niter │ │ │ │ ├── niter_Alpha.png │ │ │ │ ├── niter_Coal Deposits.png │ │ │ │ ├── niter_Distance to Shore.png │ │ │ │ ├── niter_Elevation.png │ │ │ │ ├── niter_Evaporites Deposits.png │ │ │ │ ├── niter_GP1.png │ │ │ │ ├── niter_GP2.png │ │ │ │ ├── niter_GP3.png │ │ │ │ ├── niter_Glacial Deposits.png │ │ │ │ └── niter_Sigma.png │ │ │ │ └── ymodel_chain_area.npy │ │ │ ├── 2018-05-28f_3deg │ │ │ ├── data │ │ │ │ └── precipitation_gpmodel_data.csv │ │ │ └── results │ │ │ │ ├── Data_ModelBLR_1d.png │ │ │ │ ├── Data_vs_Model_1d.png │ │ │ │ ├── cornerplot_all.png │ │ │ │ ├── histograms │ │ │ │ ├── hist_Alpha.png │ │ │ │ ├── hist_Coal Deposits.png │ │ │ │ ├── hist_Distance to Shore.png │ │ │ │ ├── hist_Elevation.png │ │ │ │ ├── hist_GP1.png │ │ │ │ ├── hist_GP2.png │ │ │ │ ├── hist_GP3.png │ │ │ │ └── hist_Sigma.png │ │ │ │ ├── inputdata_X_blr.csv │ │ │ │ └── ymodel_chain_area.npy │ │ │ ├── 2018-05-29a_3deg │ │ │ ├── data │ │ │ │ └── precipitation_gpmodel_data.csv │ │ │ └── results │ │ │ │ ├── Data_ModelBLR_1d.png │ │ │ │ ├── Data_vs_Model_1d.png │ │ │ │ ├── histograms │ │ │ │ ├── hist_Alpha.png │ │ │ │ ├── hist_Coal Deposits.png │ │ │ │ ├── hist_Elevation.png │ │ │ │ ├── hist_GP1.png │ │ │ │ ├── hist_GP2.png │ │ │ │ ├── hist_GP3.png │ │ │ │ └── hist_Sigma.png │ │ │ │ └── inputdata_X_blr.csv │ │ │ └── 2018-05-29b_3deg │ │ │ ├── code │ │ │ ├── gpmc.py │ │ │ └── run_GPplus.py │ │ │ └── results │ │ │ ├── Model_Residual_1d.png │ │ │ ├── feature_y_correlation.png │ │ │ ├── inputdata_X_gp.csv │ │ │ ├── minmaxscale_BLR.csv │ │ │ ├── minmaxscale_GP.csv │ │ │ └── result_parameters.csv │ └── Precipitation_Grids │ │ ├── B.MIO_400_C4f19g16_39ppt_conte_105 │ │ ├── PRECT_Average_annum.jpg │ │ └── PRECT_Average_annum.nc │ │ ├── B.MIO_400_C4f19g16_CAopen_conte_105 │ │ ├── PRECT_Average_annum.grd │ │ └── PRECT_Average_annum.jpg │ │ ├── B.MIO_400_C4f19g16_PSclosed_conte_105 │ │ ├── PRECT_Average_annum.grd │ │ └── PRECT_Average_annum.jpg │ │ ├── B.MIO_400_C4f19g16_TETHYSdeep_conte_105 │ │ ├── PRECT_Average_annum.grd │ │ └── PRECT_Average_annum.jpg │ │ └── B.MIO_400_C4f19g16_conte_105 │ │ ├── PRECT_Average_annum.grd │ │ └── PRECT_Average_annum.jpg └── precipitation_gpmodel_data.csv └── reconstruction_prediction ├── .~lock.results_all_14Mtrain_elev.csv# ├── missclassification.csv ├── model ├── cubic_basis.m ├── deposit_input_all_eras_new.csv ├── figures │ ├── eocene.png │ ├── eocene_lat.fig │ ├── eocene_lat.png │ ├── miocene.png │ ├── miocene_lat.fig │ ├── miocene_lat.png │ ├── reg_coeff.fig │ ├── reg_coeff.jpg │ ├── reg_coeff_histograms.png │ ├── scatter_miocene.png │ ├── scatterplots.fig │ └── scatterplots.png ├── geo_input_all_eras_new.csv ├── jbfill.m ├── lin_basis.m ├── missclassification.csv ├── non_parametric_precip_vs_lat.m ├── non_parametric_precip_vs_lat_geo_dep_mar13.m ├── num2str(era(j)) ├── precipinput_14Ma_v2_38.csv ├── resultstrain_testall.csv ├── resultstrain_testall_elev.csv └── thinplate_basis.m ├── plot_prediction_deposit_cartopy.py ├── plot_prediction_precitipation_cartopy.py ├── results_all_14Mtrain.csv ├── results_all_14Mtrain_elev.csv ├── results_depositsprecip ├── coal │ ├── map_elev │ │ ├── era101results.pdf │ │ ├── era129results.pdf │ │ ├── era14results.pdf │ │ ├── era154results.pdf │ │ ├── era182results.pdf │ │ ├── era219results.pdf │ │ ├── era242results.pdf │ │ ├── era249results.pdf │ │ ├── era38results.pdf │ │ ├── era40results.pdf │ │ ├── era51results.pdf │ │ ├── era61results.pdf │ │ └── era77results.pdf │ ├── map_prediction │ │ ├── era101results.pdf │ │ ├── era129results.pdf │ │ ├── era14results.pdf │ │ ├── era154results.pdf │ │ ├── era182results.pdf │ │ ├── era219results.pdf │ │ ├── era242results.pdf │ │ ├── era249results.pdf │ │ ├── era38results.pdf │ │ ├── era39results.pdf │ │ ├── era40results.pdf │ │ ├── era51results.pdf │ │ ├── era61results.pdf │ │ └── era77results.pdf │ └── map_prediction_uncert_ │ │ ├── era101results.pdf │ │ ├── era129results.pdf │ │ ├── era14results.pdf │ │ ├── era154results.pdf │ │ ├── era182results.pdf │ │ ├── era219results.pdf │ │ ├── era242results.pdf │ │ ├── era249results.pdf │ │ ├── era38results.pdf │ │ ├── era39results.pdf │ │ ├── era40results.pdf │ │ ├── era51results.pdf │ │ ├── era61results.pdf │ │ └── era77results.pdf ├── era101results.csv ├── era129results.csv ├── era14results.csv ├── era154results.csv ├── era182results.csv ├── era219results.csv ├── era242results.csv ├── era249results.csv ├── era38results.csv ├── era39results.csv ├── era40results.csv ├── era51results.csv ├── era61results.csv ├── era77results.csv ├── evaporites │ ├── map_prediction │ │ ├── era101results.pdf │ │ ├── era129results.pdf │ │ ├── era14results.pdf │ │ ├── era154results.pdf │ │ ├── era182results.pdf │ │ ├── era219results.pdf │ │ ├── era242results.pdf │ │ ├── era249results.pdf │ │ ├── era38results.pdf │ │ ├── era39results.pdf │ │ ├── era40results.pdf │ │ ├── era51results.pdf │ │ ├── era61results.pdf │ │ └── era77results.pdf │ └── map_prediction_uncert_ │ │ ├── era101results.pdf │ │ ├── era129results.pdf │ │ ├── era14results.pdf │ │ ├── era154results.pdf │ │ ├── era182results.pdf │ │ ├── era219results.pdf │ │ ├── era242results.pdf │ │ ├── era249results.pdf │ │ ├── era38results.pdf │ │ ├── era39results.pdf │ │ ├── era40results.pdf │ │ ├── era51results.pdf │ │ ├── era61results.pdf │ │ └── era77results.pdf ├── glacial │ ├── map_prediction │ │ ├── era101results.pdf │ │ ├── era129results.pdf │ │ ├── era14results.pdf │ │ ├── era154results.pdf │ │ ├── era182results.pdf │ │ ├── era219results.pdf │ │ ├── era242results.pdf │ │ ├── era249results.pdf │ │ ├── era38results.pdf │ │ ├── era39results.pdf │ │ ├── era40results.pdf │ │ ├── era51results.pdf │ │ ├── era61results.pdf │ │ └── era77results.pdf │ └── map_prediction_uncert_ │ │ ├── era101results.pdf │ │ ├── era129results.pdf │ │ ├── era14results.pdf │ │ ├── era154results.pdf │ │ ├── era182results.pdf │ │ ├── era219results.pdf │ │ ├── era242results.pdf │ │ ├── era249results.pdf │ │ ├── era38results.pdf │ │ ├── era39results.pdf │ │ ├── era40results.pdf │ │ ├── era51results.pdf │ │ ├── era61results.pdf │ │ └── era77results.pdf ├── grids │ ├── 101Ma_coal_actual.nc │ ├── 101Ma_coal_high.nc │ ├── 101Ma_coal_low.nc │ ├── 101Ma_coal_mean.nc │ ├── 101Ma_evap_actual.nc │ ├── 101Ma_evap_high.nc │ ├── 101Ma_evap_low.nc │ ├── 101Ma_evap_mean.nc │ ├── 101Ma_glacial_actual.nc │ ├── 101Ma_glacial_high.nc │ ├── 101Ma_glacial_low.nc │ ├── 101Ma_glacial_mean.nc │ ├── 101Ma_precip_high.nc │ ├── 101Ma_precip_low.nc │ ├── 101Ma_precip_mean.nc │ ├── 129Ma_coal_actual.nc │ ├── 129Ma_coal_high.nc │ ├── 129Ma_coal_low.nc │ ├── 129Ma_coal_mean.nc │ ├── 129Ma_evap_actual.nc │ ├── 129Ma_evap_high.nc │ ├── 129Ma_evap_low.nc │ ├── 129Ma_evap_mean.nc │ ├── 129Ma_glacial_actual.nc │ ├── 129Ma_glacial_high.nc │ ├── 129Ma_glacial_low.nc │ ├── 129Ma_glacial_mean.nc │ ├── 129Ma_precip_high.nc │ ├── 129Ma_precip_low.nc │ ├── 129Ma_precip_mean.nc │ ├── 14Ma_coal_actual.nc │ ├── 14Ma_coal_high.nc │ ├── 14Ma_coal_low.nc │ ├── 14Ma_coal_mean.nc │ ├── 14Ma_evap_actual.nc │ ├── 14Ma_evap_high.nc │ ├── 14Ma_evap_low.nc │ ├── 14Ma_evap_mean.nc │ ├── 14Ma_glacial_actual.nc │ ├── 14Ma_glacial_high.nc │ ├── 14Ma_glacial_low.nc │ ├── 14Ma_glacial_mean.nc │ ├── 14Ma_precip_actual.nc │ ├── 14Ma_precip_high.nc │ ├── 14Ma_precip_low.nc │ ├── 14Ma_precip_mean.nc │ ├── 154Ma_coal_actual.nc │ ├── 154Ma_coal_high.nc │ ├── 154Ma_coal_low.nc │ ├── 154Ma_coal_mean.nc │ ├── 154Ma_evap_actual.nc │ ├── 154Ma_evap_high.nc │ ├── 154Ma_evap_low.nc │ ├── 154Ma_evap_mean.nc │ ├── 154Ma_glacial_actual.nc │ ├── 154Ma_glacial_high.nc │ ├── 154Ma_glacial_low.nc │ ├── 154Ma_glacial_mean.nc │ ├── 154Ma_precip_high.nc │ ├── 154Ma_precip_low.nc │ ├── 154Ma_precip_mean.nc │ ├── 182Ma_coal_actual.nc │ ├── 182Ma_coal_high.nc │ ├── 182Ma_coal_low.nc │ ├── 182Ma_coal_mean.nc │ ├── 182Ma_evap_actual.nc │ ├── 182Ma_evap_high.nc │ ├── 182Ma_evap_low.nc │ ├── 182Ma_evap_mean.nc │ ├── 182Ma_glacial_actual.nc │ ├── 182Ma_glacial_high.nc │ ├── 182Ma_glacial_low.nc │ ├── 182Ma_glacial_mean.nc │ ├── 182Ma_precip_high.nc │ ├── 182Ma_precip_low.nc │ ├── 182Ma_precip_mean.nc │ ├── 219Ma_coal_actual.nc │ ├── 219Ma_coal_high.nc │ ├── 219Ma_coal_low.nc │ ├── 219Ma_coal_mean.nc │ ├── 219Ma_evap_actual.nc │ ├── 219Ma_evap_high.nc │ ├── 219Ma_evap_low.nc │ ├── 219Ma_evap_mean.nc │ ├── 219Ma_glacial_actual.nc │ ├── 219Ma_glacial_high.nc │ ├── 219Ma_glacial_low.nc │ ├── 219Ma_glacial_mean.nc │ ├── 219Ma_precip_high.nc │ ├── 219Ma_precip_low.nc │ ├── 219Ma_precip_mean.nc │ ├── 242Ma_coal_actual.nc │ ├── 242Ma_coal_high.nc │ ├── 242Ma_coal_low.nc │ ├── 242Ma_coal_mean.nc │ ├── 242Ma_evap_actual.nc │ ├── 242Ma_evap_high.nc │ ├── 242Ma_evap_low.nc │ ├── 242Ma_evap_mean.nc │ ├── 242Ma_glacial_actual.nc │ ├── 242Ma_glacial_high.nc │ ├── 242Ma_glacial_low.nc │ ├── 242Ma_glacial_mean.nc │ ├── 242Ma_precip_high.nc │ ├── 242Ma_precip_low.nc │ ├── 242Ma_precip_mean.nc │ ├── 249Ma_coal_actual.nc │ ├── 249Ma_coal_high.nc │ ├── 249Ma_coal_low.nc │ ├── 249Ma_coal_mean.nc │ ├── 249Ma_evap_actual.nc │ ├── 249Ma_evap_high.nc │ ├── 249Ma_evap_low.nc │ ├── 249Ma_evap_mean.nc │ ├── 249Ma_glacial_actual.nc │ ├── 249Ma_glacial_high.nc │ ├── 249Ma_glacial_low.nc │ ├── 249Ma_glacial_mean.nc │ ├── 249Ma_precip_high.nc │ ├── 249Ma_precip_low.nc │ ├── 249Ma_precip_mean.nc │ ├── 38Ma_coal_actual.nc │ ├── 38Ma_coal_high.nc │ ├── 38Ma_coal_low.nc │ ├── 38Ma_coal_mean.nc │ ├── 38Ma_evap_actual.nc │ ├── 38Ma_evap_high.nc │ ├── 38Ma_evap_low.nc │ ├── 38Ma_evap_mean.nc │ ├── 38Ma_glacial_actual.nc │ ├── 38Ma_glacial_high.nc │ ├── 38Ma_glacial_low.nc │ ├── 38Ma_glacial_mean.nc │ ├── 38Ma_precip_actual.nc │ ├── 38Ma_precip_high.nc │ ├── 38Ma_precip_low.nc │ ├── 38Ma_precip_mean.nc │ ├── 39Ma_coal_actual.nc │ ├── 39Ma_coal_high.nc │ ├── 39Ma_coal_low.nc │ ├── 39Ma_coal_mean.nc │ ├── 39Ma_evap_actual.nc │ ├── 39Ma_evap_high.nc │ ├── 39Ma_evap_low.nc │ ├── 39Ma_evap_mean.nc │ ├── 39Ma_glacial_actual.nc │ ├── 39Ma_glacial_high.nc │ ├── 39Ma_glacial_low.nc │ ├── 39Ma_glacial_mean.nc │ ├── 39Ma_precip_actual.nc │ ├── 39Ma_precip_high.nc │ ├── 39Ma_precip_low.nc │ ├── 39Ma_precip_mean.nc │ ├── 40Ma_coal_actual.nc │ ├── 40Ma_coal_high.nc │ ├── 40Ma_coal_low.nc │ ├── 40Ma_coal_mean.nc │ ├── 40Ma_evap_actual.nc │ ├── 40Ma_evap_high.nc │ ├── 40Ma_evap_low.nc │ ├── 40Ma_evap_mean.nc │ ├── 40Ma_glacial_actual.nc │ ├── 40Ma_glacial_high.nc │ ├── 40Ma_glacial_low.nc │ ├── 40Ma_glacial_mean.nc │ ├── 40Ma_precip_high.nc │ ├── 40Ma_precip_low.nc │ ├── 40Ma_precip_mean.nc │ ├── 51Ma_coal_actual.nc │ ├── 51Ma_coal_high.nc │ ├── 51Ma_coal_low.nc │ ├── 51Ma_coal_mean.nc │ ├── 51Ma_evap_actual.nc │ ├── 51Ma_evap_high.nc │ ├── 51Ma_evap_low.nc │ ├── 51Ma_evap_mean.nc │ ├── 51Ma_glacial_actual.nc │ ├── 51Ma_glacial_high.nc │ ├── 51Ma_glacial_low.nc │ ├── 51Ma_glacial_mean.nc │ ├── 51Ma_precip_high.nc │ ├── 51Ma_precip_low.nc │ ├── 51Ma_precip_mean.nc │ ├── 61Ma_coal_actual.nc │ ├── 61Ma_coal_high.nc │ ├── 61Ma_coal_low.nc │ ├── 61Ma_coal_mean.nc │ ├── 61Ma_evap_actual.nc │ ├── 61Ma_evap_high.nc │ ├── 61Ma_evap_low.nc │ ├── 61Ma_evap_mean.nc │ ├── 61Ma_glacial_actual.nc │ ├── 61Ma_glacial_high.nc │ ├── 61Ma_glacial_low.nc │ ├── 61Ma_glacial_mean.nc │ ├── 61Ma_precip_high.nc │ ├── 61Ma_precip_low.nc │ ├── 61Ma_precip_mean.nc │ ├── 77Ma_coal_actual.nc │ ├── 77Ma_coal_high.nc │ ├── 77Ma_coal_low.nc │ ├── 77Ma_coal_mean.nc │ ├── 77Ma_evap_actual.nc │ ├── 77Ma_evap_high.nc │ ├── 77Ma_evap_low.nc │ ├── 77Ma_evap_mean.nc │ ├── 77Ma_glacial_actual.nc │ ├── 77Ma_glacial_high.nc │ ├── 77Ma_glacial_low.nc │ ├── 77Ma_glacial_mean.nc │ ├── 77Ma_precip_high.nc │ ├── 77Ma_precip_low.nc │ ├── 77Ma_precip_mean.nc │ ├── README.md │ ├── Untitled.ipynb │ ├── gmt.history │ └── params.txt └── precitmap │ ├── map_actual │ ├── predictionera14results.pdf │ ├── predictionera38results.pdf │ ├── predictionera39results.pdf │ └── predictionera40results.pdf │ ├── map_prediction │ ├── predictionera101results.pdf │ ├── predictionera129results.pdf │ ├── predictionera14results.pdf │ ├── predictionera154results.pdf │ ├── predictionera182results.pdf │ ├── predictionera219results.pdf │ ├── predictionera242results.pdf │ ├── predictionera249results.pdf │ ├── predictionera38results.pdf │ ├── predictionera40results.pdf │ ├── predictionera51results.pdf │ ├── predictionera61results.pdf │ └── predictionera77results.pdf │ ├── map_prediction_uncert │ ├── predictionera101results.pdf │ ├── predictionera129results.pdf │ ├── predictionera14results.pdf │ ├── predictionera154results.pdf │ ├── predictionera182results.pdf │ ├── predictionera219results.pdf │ ├── predictionera242results.pdf │ ├── predictionera249results.pdf │ ├── predictionera38results.pdf │ ├── predictionera40results.pdf │ ├── predictionera51results.pdf │ ├── predictionera61results.pdf │ └── predictionera77results.pdf │ ├── plot_graph │ ├── predictionera101results.pdf │ ├── predictionera129results.pdf │ ├── predictionera14results.pdf │ ├── predictionera154results.pdf │ ├── predictionera182results.pdf │ ├── predictionera219results.pdf │ ├── predictionera242results.pdf │ ├── predictionera249results.pdf │ ├── predictionera38results.pdf │ ├── predictionera40results.pdf │ ├── predictionera51results.pdf │ ├── predictionera61results.pdf │ └── predictionera77results.pdf │ └── snapshot_plot │ ├── predictionera101results_.pdf │ ├── predictionera129results_.pdf │ ├── predictionera14results.pdf │ ├── predictionera14results_.pdf │ ├── predictionera14results_histogram_actual.pdf │ ├── predictionera14results_histogram_pred.pdf │ ├── predictionera14results_sns_diff.pdf │ ├── predictionera14resultsmiocenepred.csv │ ├── predictionera14resultsmiocenepred.txt │ ├── predictionera154results_.pdf │ ├── predictionera182results_.pdf │ ├── predictionera219results_.pdf │ ├── predictionera242results_.pdf │ ├── predictionera249results_.pdf │ ├── predictionera38results.pdf │ ├── predictionera38results_.pdf │ ├── predictionera38results_histogram_actual.pdf │ ├── predictionera38results_histogram_pred.pdf │ ├── predictionera38results_sns_diff.pdf │ ├── predictionera38resultseocenepred.csv │ ├── predictionera38resultseocenepred.txt │ ├── predictionera40results_.pdf │ ├── predictionera51results_.pdf │ ├── predictionera61results_.pdf │ └── predictionera77results_.pdf ├── run_results_visualisations_.sh └── split_eras.py /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EarthByte/paleoclimate-reconstruction/HEAD/.gitignore -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EarthByte/paleoclimate-reconstruction/HEAD/README.md -------------------------------------------------------------------------------- /environment.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EarthByte/paleoclimate-reconstruction/HEAD/environment.yml -------------------------------------------------------------------------------- /literature/Piecing_together_the_past.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EarthByte/paleoclimate-reconstruction/HEAD/literature/Piecing_together_the_past.pdf -------------------------------------------------------------------------------- /literature/Sellwood_Valdez_Mesozoic_climates_rock_record_SedGeol2006.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EarthByte/paleoclimate-reconstruction/HEAD/literature/Sellwood_Valdez_Mesozoic_climates_rock_record_SedGeol2006.pdf -------------------------------------------------------------------------------- /misc/data_predictors_anytime.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EarthByte/paleoclimate-reconstruction/HEAD/misc/data_predictors_anytime.py -------------------------------------------------------------------------------- /misc/data_preprocess_miocene.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EarthByte/paleoclimate-reconstruction/HEAD/misc/data_preprocess_miocene.py -------------------------------------------------------------------------------- /misc/maptut.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EarthByte/paleoclimate-reconstruction/HEAD/misc/maptut.py -------------------------------------------------------------------------------- /misc/plot_prediction.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EarthByte/paleoclimate-reconstruction/HEAD/misc/plot_prediction.ipynb -------------------------------------------------------------------------------- /misc/plot_prediction.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EarthByte/paleoclimate-reconstruction/HEAD/misc/plot_prediction.py -------------------------------------------------------------------------------- /misc/requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EarthByte/paleoclimate-reconstruction/HEAD/misc/requirements.txt -------------------------------------------------------------------------------- /processed_dataset/grids/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EarthByte/paleoclimate-reconstruction/HEAD/processed_dataset/grids/README.md -------------------------------------------------------------------------------- /processed_dataset/grids/params.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EarthByte/paleoclimate-reconstruction/HEAD/processed_dataset/grids/params.txt -------------------------------------------------------------------------------- /processed_dataset/grids/predictor_data_101Ma_land_CosAngleShore.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EarthByte/paleoclimate-reconstruction/HEAD/processed_dataset/grids/predictor_data_101Ma_land_CosAngleShore.tif -------------------------------------------------------------------------------- /processed_dataset/grids/predictor_data_101Ma_land_DistShore.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EarthByte/paleoclimate-reconstruction/HEAD/processed_dataset/grids/predictor_data_101Ma_land_DistShore.tif -------------------------------------------------------------------------------- /processed_dataset/grids/predictor_data_101Ma_land_Elevation.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EarthByte/paleoclimate-reconstruction/HEAD/processed_dataset/grids/predictor_data_101Ma_land_Elevation.tif -------------------------------------------------------------------------------- /processed_dataset/grids/predictor_data_101Ma_land_SinAngleShore.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EarthByte/paleoclimate-reconstruction/HEAD/processed_dataset/grids/predictor_data_101Ma_land_SinAngleShore.tif -------------------------------------------------------------------------------- /processed_dataset/grids/predictor_data_101Ma_land_SqrtDist.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EarthByte/paleoclimate-reconstruction/HEAD/processed_dataset/grids/predictor_data_101Ma_land_SqrtDist.tif -------------------------------------------------------------------------------- /processed_dataset/grids/predictor_data_101Ma_land_SqrtElevation.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EarthByte/paleoclimate-reconstruction/HEAD/processed_dataset/grids/predictor_data_101Ma_land_SqrtElevation.tif -------------------------------------------------------------------------------- /processed_dataset/grids/predictor_data_129Ma_land_CosAngleShore.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EarthByte/paleoclimate-reconstruction/HEAD/processed_dataset/grids/predictor_data_129Ma_land_CosAngleShore.tif -------------------------------------------------------------------------------- /processed_dataset/grids/predictor_data_129Ma_land_DistShore.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EarthByte/paleoclimate-reconstruction/HEAD/processed_dataset/grids/predictor_data_129Ma_land_DistShore.tif -------------------------------------------------------------------------------- /processed_dataset/grids/predictor_data_129Ma_land_Elevation.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EarthByte/paleoclimate-reconstruction/HEAD/processed_dataset/grids/predictor_data_129Ma_land_Elevation.tif -------------------------------------------------------------------------------- /processed_dataset/grids/predictor_data_129Ma_land_SinAngleShore.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EarthByte/paleoclimate-reconstruction/HEAD/processed_dataset/grids/predictor_data_129Ma_land_SinAngleShore.tif -------------------------------------------------------------------------------- /processed_dataset/grids/predictor_data_129Ma_land_SqrtDist.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EarthByte/paleoclimate-reconstruction/HEAD/processed_dataset/grids/predictor_data_129Ma_land_SqrtDist.tif -------------------------------------------------------------------------------- /processed_dataset/grids/predictor_data_129Ma_land_SqrtElevation.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EarthByte/paleoclimate-reconstruction/HEAD/processed_dataset/grids/predictor_data_129Ma_land_SqrtElevation.tif -------------------------------------------------------------------------------- /processed_dataset/grids/predictor_data_14Ma_land_CosAngleShore.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EarthByte/paleoclimate-reconstruction/HEAD/processed_dataset/grids/predictor_data_14Ma_land_CosAngleShore.tif -------------------------------------------------------------------------------- /processed_dataset/grids/predictor_data_14Ma_land_DistShore.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EarthByte/paleoclimate-reconstruction/HEAD/processed_dataset/grids/predictor_data_14Ma_land_DistShore.tif -------------------------------------------------------------------------------- /processed_dataset/grids/predictor_data_14Ma_land_Elevation.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EarthByte/paleoclimate-reconstruction/HEAD/processed_dataset/grids/predictor_data_14Ma_land_Elevation.tif -------------------------------------------------------------------------------- /processed_dataset/grids/predictor_data_14Ma_land_SinAngleShore.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EarthByte/paleoclimate-reconstruction/HEAD/processed_dataset/grids/predictor_data_14Ma_land_SinAngleShore.tif -------------------------------------------------------------------------------- /processed_dataset/grids/predictor_data_14Ma_land_SqrtDist.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EarthByte/paleoclimate-reconstruction/HEAD/processed_dataset/grids/predictor_data_14Ma_land_SqrtDist.tif -------------------------------------------------------------------------------- /processed_dataset/grids/predictor_data_14Ma_land_SqrtElevation.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EarthByte/paleoclimate-reconstruction/HEAD/processed_dataset/grids/predictor_data_14Ma_land_SqrtElevation.tif -------------------------------------------------------------------------------- /processed_dataset/grids/predictor_data_154Ma_land_CosAngleShore.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EarthByte/paleoclimate-reconstruction/HEAD/processed_dataset/grids/predictor_data_154Ma_land_CosAngleShore.tif -------------------------------------------------------------------------------- /processed_dataset/grids/predictor_data_154Ma_land_DistShore.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EarthByte/paleoclimate-reconstruction/HEAD/processed_dataset/grids/predictor_data_154Ma_land_DistShore.tif -------------------------------------------------------------------------------- /processed_dataset/grids/predictor_data_154Ma_land_Elevation.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EarthByte/paleoclimate-reconstruction/HEAD/processed_dataset/grids/predictor_data_154Ma_land_Elevation.tif -------------------------------------------------------------------------------- /processed_dataset/grids/predictor_data_154Ma_land_SinAngleShore.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EarthByte/paleoclimate-reconstruction/HEAD/processed_dataset/grids/predictor_data_154Ma_land_SinAngleShore.tif -------------------------------------------------------------------------------- /processed_dataset/grids/predictor_data_154Ma_land_SqrtDist.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EarthByte/paleoclimate-reconstruction/HEAD/processed_dataset/grids/predictor_data_154Ma_land_SqrtDist.tif -------------------------------------------------------------------------------- /processed_dataset/grids/predictor_data_154Ma_land_SqrtElevation.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EarthByte/paleoclimate-reconstruction/HEAD/processed_dataset/grids/predictor_data_154Ma_land_SqrtElevation.tif -------------------------------------------------------------------------------- /processed_dataset/grids/predictor_data_182Ma_land_CosAngleShore.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EarthByte/paleoclimate-reconstruction/HEAD/processed_dataset/grids/predictor_data_182Ma_land_CosAngleShore.tif -------------------------------------------------------------------------------- /processed_dataset/grids/predictor_data_182Ma_land_DistShore.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EarthByte/paleoclimate-reconstruction/HEAD/processed_dataset/grids/predictor_data_182Ma_land_DistShore.tif -------------------------------------------------------------------------------- /processed_dataset/grids/predictor_data_182Ma_land_Elevation.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EarthByte/paleoclimate-reconstruction/HEAD/processed_dataset/grids/predictor_data_182Ma_land_Elevation.tif -------------------------------------------------------------------------------- /processed_dataset/grids/predictor_data_182Ma_land_SinAngleShore.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EarthByte/paleoclimate-reconstruction/HEAD/processed_dataset/grids/predictor_data_182Ma_land_SinAngleShore.tif -------------------------------------------------------------------------------- /processed_dataset/grids/predictor_data_182Ma_land_SqrtDist.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EarthByte/paleoclimate-reconstruction/HEAD/processed_dataset/grids/predictor_data_182Ma_land_SqrtDist.tif -------------------------------------------------------------------------------- /processed_dataset/grids/predictor_data_182Ma_land_SqrtElevation.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EarthByte/paleoclimate-reconstruction/HEAD/processed_dataset/grids/predictor_data_182Ma_land_SqrtElevation.tif -------------------------------------------------------------------------------- /processed_dataset/grids/predictor_data_219Ma_land_CosAngleShore.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EarthByte/paleoclimate-reconstruction/HEAD/processed_dataset/grids/predictor_data_219Ma_land_CosAngleShore.tif -------------------------------------------------------------------------------- /processed_dataset/grids/predictor_data_219Ma_land_DistShore.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EarthByte/paleoclimate-reconstruction/HEAD/processed_dataset/grids/predictor_data_219Ma_land_DistShore.tif -------------------------------------------------------------------------------- /processed_dataset/grids/predictor_data_219Ma_land_Elevation.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EarthByte/paleoclimate-reconstruction/HEAD/processed_dataset/grids/predictor_data_219Ma_land_Elevation.tif -------------------------------------------------------------------------------- /processed_dataset/grids/predictor_data_219Ma_land_SinAngleShore.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EarthByte/paleoclimate-reconstruction/HEAD/processed_dataset/grids/predictor_data_219Ma_land_SinAngleShore.tif -------------------------------------------------------------------------------- /processed_dataset/grids/predictor_data_219Ma_land_SqrtDist.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EarthByte/paleoclimate-reconstruction/HEAD/processed_dataset/grids/predictor_data_219Ma_land_SqrtDist.tif -------------------------------------------------------------------------------- /processed_dataset/grids/predictor_data_219Ma_land_SqrtElevation.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EarthByte/paleoclimate-reconstruction/HEAD/processed_dataset/grids/predictor_data_219Ma_land_SqrtElevation.tif -------------------------------------------------------------------------------- /processed_dataset/grids/predictor_data_242Ma_land_CosAngleShore.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EarthByte/paleoclimate-reconstruction/HEAD/processed_dataset/grids/predictor_data_242Ma_land_CosAngleShore.tif -------------------------------------------------------------------------------- /processed_dataset/grids/predictor_data_242Ma_land_DistShore.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EarthByte/paleoclimate-reconstruction/HEAD/processed_dataset/grids/predictor_data_242Ma_land_DistShore.tif -------------------------------------------------------------------------------- /processed_dataset/grids/predictor_data_242Ma_land_Elevation.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EarthByte/paleoclimate-reconstruction/HEAD/processed_dataset/grids/predictor_data_242Ma_land_Elevation.tif -------------------------------------------------------------------------------- /processed_dataset/grids/predictor_data_242Ma_land_SinAngleShore.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EarthByte/paleoclimate-reconstruction/HEAD/processed_dataset/grids/predictor_data_242Ma_land_SinAngleShore.tif -------------------------------------------------------------------------------- /processed_dataset/grids/predictor_data_242Ma_land_SqrtDist.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EarthByte/paleoclimate-reconstruction/HEAD/processed_dataset/grids/predictor_data_242Ma_land_SqrtDist.tif -------------------------------------------------------------------------------- /processed_dataset/grids/predictor_data_242Ma_land_SqrtElevation.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EarthByte/paleoclimate-reconstruction/HEAD/processed_dataset/grids/predictor_data_242Ma_land_SqrtElevation.tif -------------------------------------------------------------------------------- /processed_dataset/grids/predictor_data_249Ma_land_CosAngleShore.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EarthByte/paleoclimate-reconstruction/HEAD/processed_dataset/grids/predictor_data_249Ma_land_CosAngleShore.tif -------------------------------------------------------------------------------- /processed_dataset/grids/predictor_data_249Ma_land_DistShore.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EarthByte/paleoclimate-reconstruction/HEAD/processed_dataset/grids/predictor_data_249Ma_land_DistShore.tif -------------------------------------------------------------------------------- /processed_dataset/grids/predictor_data_249Ma_land_Elevation.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EarthByte/paleoclimate-reconstruction/HEAD/processed_dataset/grids/predictor_data_249Ma_land_Elevation.tif -------------------------------------------------------------------------------- /processed_dataset/grids/predictor_data_249Ma_land_SinAngleShore.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EarthByte/paleoclimate-reconstruction/HEAD/processed_dataset/grids/predictor_data_249Ma_land_SinAngleShore.tif -------------------------------------------------------------------------------- /processed_dataset/grids/predictor_data_249Ma_land_SqrtDist.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EarthByte/paleoclimate-reconstruction/HEAD/processed_dataset/grids/predictor_data_249Ma_land_SqrtDist.tif -------------------------------------------------------------------------------- /processed_dataset/grids/predictor_data_249Ma_land_SqrtElevation.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EarthByte/paleoclimate-reconstruction/HEAD/processed_dataset/grids/predictor_data_249Ma_land_SqrtElevation.tif -------------------------------------------------------------------------------- /processed_dataset/grids/predictor_data_28Ma_land_CosAngleShore.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EarthByte/paleoclimate-reconstruction/HEAD/processed_dataset/grids/predictor_data_28Ma_land_CosAngleShore.tif -------------------------------------------------------------------------------- /processed_dataset/grids/predictor_data_28Ma_land_DistShore.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EarthByte/paleoclimate-reconstruction/HEAD/processed_dataset/grids/predictor_data_28Ma_land_DistShore.tif -------------------------------------------------------------------------------- /processed_dataset/grids/predictor_data_28Ma_land_Elevation.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EarthByte/paleoclimate-reconstruction/HEAD/processed_dataset/grids/predictor_data_28Ma_land_Elevation.tif -------------------------------------------------------------------------------- /processed_dataset/grids/predictor_data_28Ma_land_SinAngleShore.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EarthByte/paleoclimate-reconstruction/HEAD/processed_dataset/grids/predictor_data_28Ma_land_SinAngleShore.tif -------------------------------------------------------------------------------- /processed_dataset/grids/predictor_data_28Ma_land_SqrtDist.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EarthByte/paleoclimate-reconstruction/HEAD/processed_dataset/grids/predictor_data_28Ma_land_SqrtDist.tif -------------------------------------------------------------------------------- /processed_dataset/grids/predictor_data_28Ma_land_SqrtElevation.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EarthByte/paleoclimate-reconstruction/HEAD/processed_dataset/grids/predictor_data_28Ma_land_SqrtElevation.tif -------------------------------------------------------------------------------- /processed_dataset/grids/predictor_data_40Ma_land_CosAngleShore.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EarthByte/paleoclimate-reconstruction/HEAD/processed_dataset/grids/predictor_data_40Ma_land_CosAngleShore.tif -------------------------------------------------------------------------------- /processed_dataset/grids/predictor_data_40Ma_land_DistShore.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EarthByte/paleoclimate-reconstruction/HEAD/processed_dataset/grids/predictor_data_40Ma_land_DistShore.tif -------------------------------------------------------------------------------- /processed_dataset/grids/predictor_data_40Ma_land_Elevation.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EarthByte/paleoclimate-reconstruction/HEAD/processed_dataset/grids/predictor_data_40Ma_land_Elevation.tif -------------------------------------------------------------------------------- /processed_dataset/grids/predictor_data_40Ma_land_SinAngleShore.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EarthByte/paleoclimate-reconstruction/HEAD/processed_dataset/grids/predictor_data_40Ma_land_SinAngleShore.tif -------------------------------------------------------------------------------- /processed_dataset/grids/predictor_data_40Ma_land_SqrtDist.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EarthByte/paleoclimate-reconstruction/HEAD/processed_dataset/grids/predictor_data_40Ma_land_SqrtDist.tif -------------------------------------------------------------------------------- /processed_dataset/grids/predictor_data_40Ma_land_SqrtElevation.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EarthByte/paleoclimate-reconstruction/HEAD/processed_dataset/grids/predictor_data_40Ma_land_SqrtElevation.tif -------------------------------------------------------------------------------- /processed_dataset/grids/predictor_data_51Ma_land_CosAngleShore.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EarthByte/paleoclimate-reconstruction/HEAD/processed_dataset/grids/predictor_data_51Ma_land_CosAngleShore.tif -------------------------------------------------------------------------------- /processed_dataset/grids/predictor_data_51Ma_land_DistShore.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EarthByte/paleoclimate-reconstruction/HEAD/processed_dataset/grids/predictor_data_51Ma_land_DistShore.tif -------------------------------------------------------------------------------- /processed_dataset/grids/predictor_data_51Ma_land_Elevation.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EarthByte/paleoclimate-reconstruction/HEAD/processed_dataset/grids/predictor_data_51Ma_land_Elevation.tif -------------------------------------------------------------------------------- /processed_dataset/grids/predictor_data_51Ma_land_SinAngleShore.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EarthByte/paleoclimate-reconstruction/HEAD/processed_dataset/grids/predictor_data_51Ma_land_SinAngleShore.tif -------------------------------------------------------------------------------- /processed_dataset/grids/predictor_data_51Ma_land_SqrtDist.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EarthByte/paleoclimate-reconstruction/HEAD/processed_dataset/grids/predictor_data_51Ma_land_SqrtDist.tif -------------------------------------------------------------------------------- /processed_dataset/grids/predictor_data_51Ma_land_SqrtElevation.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EarthByte/paleoclimate-reconstruction/HEAD/processed_dataset/grids/predictor_data_51Ma_land_SqrtElevation.tif -------------------------------------------------------------------------------- /processed_dataset/grids/predictor_data_61Ma_land_CosAngleShore.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EarthByte/paleoclimate-reconstruction/HEAD/processed_dataset/grids/predictor_data_61Ma_land_CosAngleShore.tif -------------------------------------------------------------------------------- /processed_dataset/grids/predictor_data_61Ma_land_DistShore.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EarthByte/paleoclimate-reconstruction/HEAD/processed_dataset/grids/predictor_data_61Ma_land_DistShore.tif -------------------------------------------------------------------------------- /processed_dataset/grids/predictor_data_61Ma_land_Elevation.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EarthByte/paleoclimate-reconstruction/HEAD/processed_dataset/grids/predictor_data_61Ma_land_Elevation.tif -------------------------------------------------------------------------------- /processed_dataset/grids/predictor_data_61Ma_land_SinAngleShore.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EarthByte/paleoclimate-reconstruction/HEAD/processed_dataset/grids/predictor_data_61Ma_land_SinAngleShore.tif -------------------------------------------------------------------------------- /processed_dataset/grids/predictor_data_61Ma_land_SqrtDist.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EarthByte/paleoclimate-reconstruction/HEAD/processed_dataset/grids/predictor_data_61Ma_land_SqrtDist.tif -------------------------------------------------------------------------------- /processed_dataset/grids/predictor_data_61Ma_land_SqrtElevation.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EarthByte/paleoclimate-reconstruction/HEAD/processed_dataset/grids/predictor_data_61Ma_land_SqrtElevation.tif -------------------------------------------------------------------------------- /processed_dataset/grids/predictor_data_77Ma_land_CosAngleShore.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EarthByte/paleoclimate-reconstruction/HEAD/processed_dataset/grids/predictor_data_77Ma_land_CosAngleShore.tif -------------------------------------------------------------------------------- /processed_dataset/grids/predictor_data_77Ma_land_DistShore.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EarthByte/paleoclimate-reconstruction/HEAD/processed_dataset/grids/predictor_data_77Ma_land_DistShore.tif -------------------------------------------------------------------------------- /processed_dataset/grids/predictor_data_77Ma_land_Elevation.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EarthByte/paleoclimate-reconstruction/HEAD/processed_dataset/grids/predictor_data_77Ma_land_Elevation.tif -------------------------------------------------------------------------------- /processed_dataset/grids/predictor_data_77Ma_land_SinAngleShore.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EarthByte/paleoclimate-reconstruction/HEAD/processed_dataset/grids/predictor_data_77Ma_land_SinAngleShore.tif -------------------------------------------------------------------------------- /processed_dataset/grids/predictor_data_77Ma_land_SqrtDist.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EarthByte/paleoclimate-reconstruction/HEAD/processed_dataset/grids/predictor_data_77Ma_land_SqrtDist.tif -------------------------------------------------------------------------------- /processed_dataset/grids/predictor_data_77Ma_land_SqrtElevation.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EarthByte/paleoclimate-reconstruction/HEAD/processed_dataset/grids/predictor_data_77Ma_land_SqrtElevation.tif -------------------------------------------------------------------------------- /processed_dataset/learning_data_miocene_land.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EarthByte/paleoclimate-reconstruction/HEAD/processed_dataset/learning_data_miocene_land.csv -------------------------------------------------------------------------------- /processed_dataset/predictor_data_101Ma_land.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EarthByte/paleoclimate-reconstruction/HEAD/processed_dataset/predictor_data_101Ma_land.csv -------------------------------------------------------------------------------- /processed_dataset/predictor_data_129Ma_land.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EarthByte/paleoclimate-reconstruction/HEAD/processed_dataset/predictor_data_129Ma_land.csv -------------------------------------------------------------------------------- /processed_dataset/predictor_data_14Ma_land.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EarthByte/paleoclimate-reconstruction/HEAD/processed_dataset/predictor_data_14Ma_land.csv -------------------------------------------------------------------------------- /processed_dataset/predictor_data_154Ma_land.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EarthByte/paleoclimate-reconstruction/HEAD/processed_dataset/predictor_data_154Ma_land.csv -------------------------------------------------------------------------------- /processed_dataset/predictor_data_182Ma_land.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EarthByte/paleoclimate-reconstruction/HEAD/processed_dataset/predictor_data_182Ma_land.csv -------------------------------------------------------------------------------- /processed_dataset/predictor_data_219Ma_land.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EarthByte/paleoclimate-reconstruction/HEAD/processed_dataset/predictor_data_219Ma_land.csv -------------------------------------------------------------------------------- /processed_dataset/predictor_data_242Ma_land.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EarthByte/paleoclimate-reconstruction/HEAD/processed_dataset/predictor_data_242Ma_land.csv -------------------------------------------------------------------------------- /processed_dataset/predictor_data_249Ma_land.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EarthByte/paleoclimate-reconstruction/HEAD/processed_dataset/predictor_data_249Ma_land.csv -------------------------------------------------------------------------------- /processed_dataset/predictor_data_28Ma_land.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EarthByte/paleoclimate-reconstruction/HEAD/processed_dataset/predictor_data_28Ma_land.csv -------------------------------------------------------------------------------- /processed_dataset/predictor_data_40Ma_land.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EarthByte/paleoclimate-reconstruction/HEAD/processed_dataset/predictor_data_40Ma_land.csv -------------------------------------------------------------------------------- /processed_dataset/predictor_data_51Ma_land.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EarthByte/paleoclimate-reconstruction/HEAD/processed_dataset/predictor_data_51Ma_land.csv -------------------------------------------------------------------------------- /processed_dataset/predictor_data_61Ma_land.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EarthByte/paleoclimate-reconstruction/HEAD/processed_dataset/predictor_data_61Ma_land.csv -------------------------------------------------------------------------------- /processed_dataset/predictor_data_77Ma_land.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EarthByte/paleoclimate-reconstruction/HEAD/processed_dataset/predictor_data_77Ma_land.csv -------------------------------------------------------------------------------- /processed_dataset/updateddata2019/learning_data_14_land.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EarthByte/paleoclimate-reconstruction/HEAD/processed_dataset/updateddata2019/learning_data_14_land.csv -------------------------------------------------------------------------------- /processed_dataset/updateddata2019/learning_data_38_land_2PIC.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EarthByte/paleoclimate-reconstruction/HEAD/processed_dataset/updateddata2019/learning_data_38_land_2PIC.csv -------------------------------------------------------------------------------- /processed_dataset/updateddata2019/learning_data_38_land_4PIC.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EarthByte/paleoclimate-reconstruction/HEAD/processed_dataset/updateddata2019/learning_data_38_land_4PIC.csv -------------------------------------------------------------------------------- /raw_data/Boucot_etal_lithology_data_MapFolio2013.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EarthByte/paleoclimate-reconstruction/HEAD/raw_data/Boucot_etal_lithology_data_MapFolio2013.pdf -------------------------------------------------------------------------------- /raw_data/Data_deposits/precipitation_gpmodel_data.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EarthByte/paleoclimate-reconstruction/HEAD/raw_data/Data_deposits/precipitation_gpmodel_data.csv -------------------------------------------------------------------------------- /raw_data/Data_deposits/predictor_data_Eocene_deposit.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EarthByte/paleoclimate-reconstruction/HEAD/raw_data/Data_deposits/predictor_data_Eocene_deposit.csv -------------------------------------------------------------------------------- /raw_data/Data_deposits/predictor_data_LateCretaceous_deposit.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EarthByte/paleoclimate-reconstruction/HEAD/raw_data/Data_deposits/predictor_data_LateCretaceous_deposit.csv -------------------------------------------------------------------------------- /raw_data/Data_deposits/predictor_data_Miocene_deposit.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EarthByte/paleoclimate-reconstruction/HEAD/raw_data/Data_deposits/predictor_data_Miocene_deposit.csv -------------------------------------------------------------------------------- /raw_data/Data_deposits/predictor_data_Oligocene_deposit.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EarthByte/paleoclimate-reconstruction/HEAD/raw_data/Data_deposits/predictor_data_Oligocene_deposit.csv -------------------------------------------------------------------------------- /raw_data/Data_deposits/predictor_data_Paleocene_deposit.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EarthByte/paleoclimate-reconstruction/HEAD/raw_data/Data_deposits/predictor_data_Paleocene_deposit.csv -------------------------------------------------------------------------------- /raw_data/LithData_PaleoXY_Matthews2016_20180226.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EarthByte/paleoclimate-reconstruction/HEAD/raw_data/LithData_PaleoXY_Matthews2016_20180226.csv -------------------------------------------------------------------------------- /raw_data/LithologyCodes.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EarthByte/paleoclimate-reconstruction/HEAD/raw_data/LithologyCodes.csv -------------------------------------------------------------------------------- /raw_data/Lithology_data_Boucot_etal_2013/Reconstructed_Miocene/Lithology_15.00Ma.xy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EarthByte/paleoclimate-reconstruction/HEAD/raw_data/Lithology_data_Boucot_etal_2013/Reconstructed_Miocene/Lithology_15.00Ma.xy -------------------------------------------------------------------------------- /raw_data/Lithology_data_Boucot_etal_2013/Shapefiles_All/PresentDay_LithData_Matthews2016_410-0Ma_AllTypes.dbf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EarthByte/paleoclimate-reconstruction/HEAD/raw_data/Lithology_data_Boucot_etal_2013/Shapefiles_All/PresentDay_LithData_Matthews2016_410-0Ma_AllTypes.dbf -------------------------------------------------------------------------------- /raw_data/Lithology_data_Boucot_etal_2013/Shapefiles_All/PresentDay_LithData_Matthews2016_410-0Ma_AllTypes.prj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EarthByte/paleoclimate-reconstruction/HEAD/raw_data/Lithology_data_Boucot_etal_2013/Shapefiles_All/PresentDay_LithData_Matthews2016_410-0Ma_AllTypes.prj -------------------------------------------------------------------------------- /raw_data/Lithology_data_Boucot_etal_2013/Shapefiles_All/PresentDay_LithData_Matthews2016_410-0Ma_AllTypes.sbn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EarthByte/paleoclimate-reconstruction/HEAD/raw_data/Lithology_data_Boucot_etal_2013/Shapefiles_All/PresentDay_LithData_Matthews2016_410-0Ma_AllTypes.sbn -------------------------------------------------------------------------------- /raw_data/Lithology_data_Boucot_etal_2013/Shapefiles_All/PresentDay_LithData_Matthews2016_410-0Ma_AllTypes.sbx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EarthByte/paleoclimate-reconstruction/HEAD/raw_data/Lithology_data_Boucot_etal_2013/Shapefiles_All/PresentDay_LithData_Matthews2016_410-0Ma_AllTypes.sbx -------------------------------------------------------------------------------- /raw_data/Lithology_data_Boucot_etal_2013/Shapefiles_All/PresentDay_LithData_Matthews2016_410-0Ma_AllTypes.shp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EarthByte/paleoclimate-reconstruction/HEAD/raw_data/Lithology_data_Boucot_etal_2013/Shapefiles_All/PresentDay_LithData_Matthews2016_410-0Ma_AllTypes.shp -------------------------------------------------------------------------------- /raw_data/Lithology_data_Boucot_etal_2013/Shapefiles_All/PresentDay_LithData_Matthews2016_410-0Ma_AllTypes.shx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EarthByte/paleoclimate-reconstruction/HEAD/raw_data/Lithology_data_Boucot_etal_2013/Shapefiles_All/PresentDay_LithData_Matthews2016_410-0Ma_AllTypes.shx -------------------------------------------------------------------------------- /raw_data/PRECT_Average_annum.grd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EarthByte/paleoclimate-reconstruction/HEAD/raw_data/PRECT_Average_annum.grd -------------------------------------------------------------------------------- /raw_data/Percipitation_geologictimescale/Herold_etal_modelling_Miocene_climate_optimum_JClimate_2011.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EarthByte/paleoclimate-reconstruction/HEAD/raw_data/Percipitation_geologictimescale/Herold_etal_modelling_Miocene_climate_optimum_JClimate_2011.pdf -------------------------------------------------------------------------------- /raw_data/Percipitation_geologictimescale/MadhuraAnalysis/GPtests/2018-04-09_4deg/ymodel_chain_area.npy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EarthByte/paleoclimate-reconstruction/HEAD/raw_data/Percipitation_geologictimescale/MadhuraAnalysis/GPtests/2018-04-09_4deg/ymodel_chain_area.npy -------------------------------------------------------------------------------- /raw_data/Percipitation_geologictimescale/MadhuraAnalysis/GPtests/2018-04-17_3deg/plots_niter/niter_Alpha.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EarthByte/paleoclimate-reconstruction/HEAD/raw_data/Percipitation_geologictimescale/MadhuraAnalysis/GPtests/2018-04-17_3deg/plots_niter/niter_Alpha.png -------------------------------------------------------------------------------- /raw_data/Percipitation_geologictimescale/MadhuraAnalysis/GPtests/2018-04-17_3deg/plots_niter/niter_GP1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EarthByte/paleoclimate-reconstruction/HEAD/raw_data/Percipitation_geologictimescale/MadhuraAnalysis/GPtests/2018-04-17_3deg/plots_niter/niter_GP1.png -------------------------------------------------------------------------------- /raw_data/Percipitation_geologictimescale/MadhuraAnalysis/GPtests/2018-04-17_3deg/plots_niter/niter_GP2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EarthByte/paleoclimate-reconstruction/HEAD/raw_data/Percipitation_geologictimescale/MadhuraAnalysis/GPtests/2018-04-17_3deg/plots_niter/niter_GP2.png -------------------------------------------------------------------------------- /raw_data/Percipitation_geologictimescale/MadhuraAnalysis/GPtests/2018-04-17_3deg/plots_niter/niter_Sigma.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EarthByte/paleoclimate-reconstruction/HEAD/raw_data/Percipitation_geologictimescale/MadhuraAnalysis/GPtests/2018-04-17_3deg/plots_niter/niter_Sigma.png -------------------------------------------------------------------------------- /raw_data/Percipitation_geologictimescale/MadhuraAnalysis/GPtests/2018-05-02_3deg/plots_niter/niter_Alpha.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EarthByte/paleoclimate-reconstruction/HEAD/raw_data/Percipitation_geologictimescale/MadhuraAnalysis/GPtests/2018-05-02_3deg/plots_niter/niter_Alpha.png -------------------------------------------------------------------------------- /raw_data/Percipitation_geologictimescale/MadhuraAnalysis/GPtests/2018-05-02_3deg/plots_niter/niter_GP1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EarthByte/paleoclimate-reconstruction/HEAD/raw_data/Percipitation_geologictimescale/MadhuraAnalysis/GPtests/2018-05-02_3deg/plots_niter/niter_GP1.png -------------------------------------------------------------------------------- /raw_data/Percipitation_geologictimescale/MadhuraAnalysis/GPtests/2018-05-02_3deg/plots_niter/niter_GP2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EarthByte/paleoclimate-reconstruction/HEAD/raw_data/Percipitation_geologictimescale/MadhuraAnalysis/GPtests/2018-05-02_3deg/plots_niter/niter_GP2.png -------------------------------------------------------------------------------- /raw_data/Percipitation_geologictimescale/MadhuraAnalysis/GPtests/2018-05-02_3deg/plots_niter/niter_Sigma.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EarthByte/paleoclimate-reconstruction/HEAD/raw_data/Percipitation_geologictimescale/MadhuraAnalysis/GPtests/2018-05-02_3deg/plots_niter/niter_Sigma.png -------------------------------------------------------------------------------- /raw_data/Percipitation_geologictimescale/MadhuraAnalysis/GPtests/2018-05-07a_3deg/results/Data_ModelBLR_1d.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EarthByte/paleoclimate-reconstruction/HEAD/raw_data/Percipitation_geologictimescale/MadhuraAnalysis/GPtests/2018-05-07a_3deg/results/Data_ModelBLR_1d.png -------------------------------------------------------------------------------- /raw_data/Percipitation_geologictimescale/MadhuraAnalysis/GPtests/2018-05-07a_3deg/results/inputdata_X_gp.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EarthByte/paleoclimate-reconstruction/HEAD/raw_data/Percipitation_geologictimescale/MadhuraAnalysis/GPtests/2018-05-07a_3deg/results/inputdata_X_gp.csv -------------------------------------------------------------------------------- /raw_data/Percipitation_geologictimescale/MadhuraAnalysis/GPtests/2018-05-07a_3deg/results/sampler_chain.npy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EarthByte/paleoclimate-reconstruction/HEAD/raw_data/Percipitation_geologictimescale/MadhuraAnalysis/GPtests/2018-05-07a_3deg/results/sampler_chain.npy -------------------------------------------------------------------------------- /raw_data/Percipitation_geologictimescale/MadhuraAnalysis/GPtests/2018-05-07b_3deg/results/cornerplot_all.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EarthByte/paleoclimate-reconstruction/HEAD/raw_data/Percipitation_geologictimescale/MadhuraAnalysis/GPtests/2018-05-07b_3deg/results/cornerplot_all.png -------------------------------------------------------------------------------- /raw_data/Percipitation_geologictimescale/MadhuraAnalysis/GPtests/2018-05-07b_3deg/results/inputdata_X_gp.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EarthByte/paleoclimate-reconstruction/HEAD/raw_data/Percipitation_geologictimescale/MadhuraAnalysis/GPtests/2018-05-07b_3deg/results/inputdata_X_gp.csv -------------------------------------------------------------------------------- /raw_data/Percipitation_geologictimescale/MadhuraAnalysis/GPtests/2018-05-07b_3deg/results/sampler_chain.npy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EarthByte/paleoclimate-reconstruction/HEAD/raw_data/Percipitation_geologictimescale/MadhuraAnalysis/GPtests/2018-05-07b_3deg/results/sampler_chain.npy -------------------------------------------------------------------------------- /raw_data/Percipitation_geologictimescale/MadhuraAnalysis/GPtests/2018-05-09_3deg/results/cornerplot_all.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EarthByte/paleoclimate-reconstruction/HEAD/raw_data/Percipitation_geologictimescale/MadhuraAnalysis/GPtests/2018-05-09_3deg/results/cornerplot_all.png -------------------------------------------------------------------------------- /raw_data/Percipitation_geologictimescale/MadhuraAnalysis/GPtests/2018-05-09_3deg/results/ymodel_chain_area.npy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EarthByte/paleoclimate-reconstruction/HEAD/raw_data/Percipitation_geologictimescale/MadhuraAnalysis/GPtests/2018-05-09_3deg/results/ymodel_chain_area.npy -------------------------------------------------------------------------------- /raw_data/Percipitation_geologictimescale/MadhuraAnalysis/GPtests/2018-05-10a_3deg/results/Data_ModelBLR_1d.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EarthByte/paleoclimate-reconstruction/HEAD/raw_data/Percipitation_geologictimescale/MadhuraAnalysis/GPtests/2018-05-10a_3deg/results/Data_ModelBLR_1d.png -------------------------------------------------------------------------------- /raw_data/Percipitation_geologictimescale/MadhuraAnalysis/GPtests/2018-05-10a_3deg/results/inputdata_X_blr.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EarthByte/paleoclimate-reconstruction/HEAD/raw_data/Percipitation_geologictimescale/MadhuraAnalysis/GPtests/2018-05-10a_3deg/results/inputdata_X_blr.csv -------------------------------------------------------------------------------- /raw_data/Percipitation_geologictimescale/MadhuraAnalysis/GPtests/2018-05-10a_3deg/results/inputdata_X_gp.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EarthByte/paleoclimate-reconstruction/HEAD/raw_data/Percipitation_geologictimescale/MadhuraAnalysis/GPtests/2018-05-10a_3deg/results/inputdata_X_gp.csv -------------------------------------------------------------------------------- /raw_data/Percipitation_geologictimescale/MadhuraAnalysis/GPtests/2018-05-10b_3deg/results/Data_ModelBLR_1d.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EarthByte/paleoclimate-reconstruction/HEAD/raw_data/Percipitation_geologictimescale/MadhuraAnalysis/GPtests/2018-05-10b_3deg/results/Data_ModelBLR_1d.png -------------------------------------------------------------------------------- /raw_data/Percipitation_geologictimescale/MadhuraAnalysis/GPtests/2018-05-10b_3deg/results/Data_vs_Model_1d.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EarthByte/paleoclimate-reconstruction/HEAD/raw_data/Percipitation_geologictimescale/MadhuraAnalysis/GPtests/2018-05-10b_3deg/results/Data_vs_Model_1d.png -------------------------------------------------------------------------------- /raw_data/Percipitation_geologictimescale/MadhuraAnalysis/GPtests/2018-05-10b_3deg/results/cornerplot_all.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EarthByte/paleoclimate-reconstruction/HEAD/raw_data/Percipitation_geologictimescale/MadhuraAnalysis/GPtests/2018-05-10b_3deg/results/cornerplot_all.png -------------------------------------------------------------------------------- /raw_data/Percipitation_geologictimescale/MadhuraAnalysis/GPtests/2018-05-10b_3deg/results/inputdata_X_gp.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EarthByte/paleoclimate-reconstruction/HEAD/raw_data/Percipitation_geologictimescale/MadhuraAnalysis/GPtests/2018-05-10b_3deg/results/inputdata_X_gp.csv -------------------------------------------------------------------------------- /raw_data/Percipitation_geologictimescale/MadhuraAnalysis/GPtests/2018-05-10c_3deg/results/inputdata_X_blr.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EarthByte/paleoclimate-reconstruction/HEAD/raw_data/Percipitation_geologictimescale/MadhuraAnalysis/GPtests/2018-05-10c_3deg/results/inputdata_X_blr.csv -------------------------------------------------------------------------------- /raw_data/Percipitation_geologictimescale/MadhuraAnalysis/GPtests/2018-05-14_3deg/results/Data_ModelBLR_1d.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EarthByte/paleoclimate-reconstruction/HEAD/raw_data/Percipitation_geologictimescale/MadhuraAnalysis/GPtests/2018-05-14_3deg/results/Data_ModelBLR_1d.png -------------------------------------------------------------------------------- /raw_data/Percipitation_geologictimescale/MadhuraAnalysis/GPtests/2018-05-14_3deg/results/cornerplot_all.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EarthByte/paleoclimate-reconstruction/HEAD/raw_data/Percipitation_geologictimescale/MadhuraAnalysis/GPtests/2018-05-14_3deg/results/cornerplot_all.png -------------------------------------------------------------------------------- /raw_data/Percipitation_geologictimescale/MadhuraAnalysis/GPtests/2018-05-14_3deg/results/inputdata_X_blr.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EarthByte/paleoclimate-reconstruction/HEAD/raw_data/Percipitation_geologictimescale/MadhuraAnalysis/GPtests/2018-05-14_3deg/results/inputdata_X_blr.csv -------------------------------------------------------------------------------- /raw_data/Percipitation_geologictimescale/MadhuraAnalysis/GPtests/2018-05-15_3deg/results/Data_ModelBLR_1d.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EarthByte/paleoclimate-reconstruction/HEAD/raw_data/Percipitation_geologictimescale/MadhuraAnalysis/GPtests/2018-05-15_3deg/results/Data_ModelBLR_1d.png -------------------------------------------------------------------------------- /raw_data/Percipitation_geologictimescale/MadhuraAnalysis/GPtests/2018-05-15_3deg/results/Data_vs_Model_1d.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EarthByte/paleoclimate-reconstruction/HEAD/raw_data/Percipitation_geologictimescale/MadhuraAnalysis/GPtests/2018-05-15_3deg/results/Data_vs_Model_1d.png -------------------------------------------------------------------------------- /raw_data/Percipitation_geologictimescale/MadhuraAnalysis/GPtests/2018-05-15_3deg/results/inputdata_X_blr.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EarthByte/paleoclimate-reconstruction/HEAD/raw_data/Percipitation_geologictimescale/MadhuraAnalysis/GPtests/2018-05-15_3deg/results/inputdata_X_blr.csv -------------------------------------------------------------------------------- /raw_data/Percipitation_geologictimescale/MadhuraAnalysis/GPtests/2018-05-15_3deg/results/sampler_chain.npy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EarthByte/paleoclimate-reconstruction/HEAD/raw_data/Percipitation_geologictimescale/MadhuraAnalysis/GPtests/2018-05-15_3deg/results/sampler_chain.npy -------------------------------------------------------------------------------- /raw_data/Percipitation_geologictimescale/MadhuraAnalysis/GPtests/2018-05-21a_3deg/results/Data_ModelBLR_1d.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EarthByte/paleoclimate-reconstruction/HEAD/raw_data/Percipitation_geologictimescale/MadhuraAnalysis/GPtests/2018-05-21a_3deg/results/Data_ModelBLR_1d.png -------------------------------------------------------------------------------- /raw_data/Percipitation_geologictimescale/MadhuraAnalysis/GPtests/2018-05-21a_3deg/results/inputdata_X_blr.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EarthByte/paleoclimate-reconstruction/HEAD/raw_data/Percipitation_geologictimescale/MadhuraAnalysis/GPtests/2018-05-21a_3deg/results/inputdata_X_blr.csv -------------------------------------------------------------------------------- /raw_data/Percipitation_geologictimescale/MadhuraAnalysis/GPtests/2018-05-21b_3deg/results/Data_vs_Model_1d.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EarthByte/paleoclimate-reconstruction/HEAD/raw_data/Percipitation_geologictimescale/MadhuraAnalysis/GPtests/2018-05-21b_3deg/results/Data_vs_Model_1d.png -------------------------------------------------------------------------------- /raw_data/Percipitation_geologictimescale/MadhuraAnalysis/GPtests/2018-05-21b_3deg/results/inputdata_X_blr.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EarthByte/paleoclimate-reconstruction/HEAD/raw_data/Percipitation_geologictimescale/MadhuraAnalysis/GPtests/2018-05-21b_3deg/results/inputdata_X_blr.csv -------------------------------------------------------------------------------- /raw_data/Percipitation_geologictimescale/MadhuraAnalysis/GPtests/2018-05-22a_3deg/results/Data_ModelBLR_1d.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EarthByte/paleoclimate-reconstruction/HEAD/raw_data/Percipitation_geologictimescale/MadhuraAnalysis/GPtests/2018-05-22a_3deg/results/Data_ModelBLR_1d.png -------------------------------------------------------------------------------- /raw_data/Percipitation_geologictimescale/MadhuraAnalysis/GPtests/2018-05-22a_3deg/results/Data_vs_Model_1d.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EarthByte/paleoclimate-reconstruction/HEAD/raw_data/Percipitation_geologictimescale/MadhuraAnalysis/GPtests/2018-05-22a_3deg/results/Data_vs_Model_1d.png -------------------------------------------------------------------------------- /raw_data/Percipitation_geologictimescale/MadhuraAnalysis/GPtests/2018-05-22a_3deg/results/inputdata_X_blr.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EarthByte/paleoclimate-reconstruction/HEAD/raw_data/Percipitation_geologictimescale/MadhuraAnalysis/GPtests/2018-05-22a_3deg/results/inputdata_X_blr.csv -------------------------------------------------------------------------------- /raw_data/Percipitation_geologictimescale/MadhuraAnalysis/GPtests/2018-05-22a_3deg/results/sampler_chain.npy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EarthByte/paleoclimate-reconstruction/HEAD/raw_data/Percipitation_geologictimescale/MadhuraAnalysis/GPtests/2018-05-22a_3deg/results/sampler_chain.npy -------------------------------------------------------------------------------- /raw_data/Percipitation_geologictimescale/MadhuraAnalysis/GPtests/2018-05-22b_3deg/results/Data_ModelBLR_1d.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EarthByte/paleoclimate-reconstruction/HEAD/raw_data/Percipitation_geologictimescale/MadhuraAnalysis/GPtests/2018-05-22b_3deg/results/Data_ModelBLR_1d.png -------------------------------------------------------------------------------- /raw_data/Percipitation_geologictimescale/MadhuraAnalysis/GPtests/2018-05-22b_3deg/results/inputdata_X_blr.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EarthByte/paleoclimate-reconstruction/HEAD/raw_data/Percipitation_geologictimescale/MadhuraAnalysis/GPtests/2018-05-22b_3deg/results/inputdata_X_blr.csv -------------------------------------------------------------------------------- /raw_data/Percipitation_geologictimescale/MadhuraAnalysis/GPtests/2018-05-22b_3deg/results/sampler_chain.npy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EarthByte/paleoclimate-reconstruction/HEAD/raw_data/Percipitation_geologictimescale/MadhuraAnalysis/GPtests/2018-05-22b_3deg/results/sampler_chain.npy -------------------------------------------------------------------------------- /raw_data/Percipitation_geologictimescale/MadhuraAnalysis/GPtests/2018-05-27a_3deg/results/Data_ModelBLR_1d.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EarthByte/paleoclimate-reconstruction/HEAD/raw_data/Percipitation_geologictimescale/MadhuraAnalysis/GPtests/2018-05-27a_3deg/results/Data_ModelBLR_1d.png -------------------------------------------------------------------------------- /raw_data/Percipitation_geologictimescale/MadhuraAnalysis/GPtests/2018-05-27a_3deg/results/Data_vs_Model_1d.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EarthByte/paleoclimate-reconstruction/HEAD/raw_data/Percipitation_geologictimescale/MadhuraAnalysis/GPtests/2018-05-27a_3deg/results/Data_vs_Model_1d.png -------------------------------------------------------------------------------- /raw_data/Percipitation_geologictimescale/MadhuraAnalysis/GPtests/2018-05-27a_3deg/results/cornerplot_all.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EarthByte/paleoclimate-reconstruction/HEAD/raw_data/Percipitation_geologictimescale/MadhuraAnalysis/GPtests/2018-05-27a_3deg/results/cornerplot_all.png -------------------------------------------------------------------------------- /raw_data/Percipitation_geologictimescale/MadhuraAnalysis/GPtests/2018-05-27a_3deg/results/inputdata_X_blr.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EarthByte/paleoclimate-reconstruction/HEAD/raw_data/Percipitation_geologictimescale/MadhuraAnalysis/GPtests/2018-05-27a_3deg/results/inputdata_X_blr.csv -------------------------------------------------------------------------------- /raw_data/Percipitation_geologictimescale/MadhuraAnalysis/GPtests/2018-05-27b_3deg/results/Data_vs_Model_1d.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EarthByte/paleoclimate-reconstruction/HEAD/raw_data/Percipitation_geologictimescale/MadhuraAnalysis/GPtests/2018-05-27b_3deg/results/Data_vs_Model_1d.png -------------------------------------------------------------------------------- /raw_data/Percipitation_geologictimescale/MadhuraAnalysis/GPtests/2018-05-27b_3deg/results/cornerplot_all.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EarthByte/paleoclimate-reconstruction/HEAD/raw_data/Percipitation_geologictimescale/MadhuraAnalysis/GPtests/2018-05-27b_3deg/results/cornerplot_all.png -------------------------------------------------------------------------------- /raw_data/Percipitation_geologictimescale/MadhuraAnalysis/GPtests/2018-05-28a_3deg/results/Data_vs_Model_1d.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EarthByte/paleoclimate-reconstruction/HEAD/raw_data/Percipitation_geologictimescale/MadhuraAnalysis/GPtests/2018-05-28a_3deg/results/Data_vs_Model_1d.png -------------------------------------------------------------------------------- /raw_data/Percipitation_geologictimescale/MadhuraAnalysis/GPtests/2018-05-28a_3deg/results/inputdata_X_blr.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EarthByte/paleoclimate-reconstruction/HEAD/raw_data/Percipitation_geologictimescale/MadhuraAnalysis/GPtests/2018-05-28a_3deg/results/inputdata_X_blr.csv -------------------------------------------------------------------------------- /raw_data/Percipitation_geologictimescale/MadhuraAnalysis/GPtests/2018-05-28c_3deg/results/Data_ModelBLR_1d.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EarthByte/paleoclimate-reconstruction/HEAD/raw_data/Percipitation_geologictimescale/MadhuraAnalysis/GPtests/2018-05-28c_3deg/results/Data_ModelBLR_1d.png -------------------------------------------------------------------------------- /raw_data/Percipitation_geologictimescale/MadhuraAnalysis/GPtests/2018-05-28c_3deg/results/cornerplot_all.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EarthByte/paleoclimate-reconstruction/HEAD/raw_data/Percipitation_geologictimescale/MadhuraAnalysis/GPtests/2018-05-28c_3deg/results/cornerplot_all.png -------------------------------------------------------------------------------- /raw_data/Percipitation_geologictimescale/MadhuraAnalysis/GPtests/2018-05-28c_3deg/results/inputdata_X_blr.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EarthByte/paleoclimate-reconstruction/HEAD/raw_data/Percipitation_geologictimescale/MadhuraAnalysis/GPtests/2018-05-28c_3deg/results/inputdata_X_blr.csv -------------------------------------------------------------------------------- /raw_data/Percipitation_geologictimescale/MadhuraAnalysis/GPtests/2018-05-28d_3deg/results/Data_ModelBLR_1d.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EarthByte/paleoclimate-reconstruction/HEAD/raw_data/Percipitation_geologictimescale/MadhuraAnalysis/GPtests/2018-05-28d_3deg/results/Data_ModelBLR_1d.png -------------------------------------------------------------------------------- /raw_data/Percipitation_geologictimescale/MadhuraAnalysis/GPtests/2018-05-28f_3deg/results/Data_ModelBLR_1d.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EarthByte/paleoclimate-reconstruction/HEAD/raw_data/Percipitation_geologictimescale/MadhuraAnalysis/GPtests/2018-05-28f_3deg/results/Data_ModelBLR_1d.png -------------------------------------------------------------------------------- /raw_data/Percipitation_geologictimescale/MadhuraAnalysis/GPtests/2018-05-28f_3deg/results/Data_vs_Model_1d.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EarthByte/paleoclimate-reconstruction/HEAD/raw_data/Percipitation_geologictimescale/MadhuraAnalysis/GPtests/2018-05-28f_3deg/results/Data_vs_Model_1d.png -------------------------------------------------------------------------------- /raw_data/Percipitation_geologictimescale/MadhuraAnalysis/GPtests/2018-05-28f_3deg/results/cornerplot_all.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EarthByte/paleoclimate-reconstruction/HEAD/raw_data/Percipitation_geologictimescale/MadhuraAnalysis/GPtests/2018-05-28f_3deg/results/cornerplot_all.png -------------------------------------------------------------------------------- /raw_data/Percipitation_geologictimescale/MadhuraAnalysis/GPtests/2018-05-28f_3deg/results/inputdata_X_blr.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EarthByte/paleoclimate-reconstruction/HEAD/raw_data/Percipitation_geologictimescale/MadhuraAnalysis/GPtests/2018-05-28f_3deg/results/inputdata_X_blr.csv -------------------------------------------------------------------------------- /raw_data/Percipitation_geologictimescale/MadhuraAnalysis/GPtests/2018-05-29a_3deg/results/Data_ModelBLR_1d.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EarthByte/paleoclimate-reconstruction/HEAD/raw_data/Percipitation_geologictimescale/MadhuraAnalysis/GPtests/2018-05-29a_3deg/results/Data_ModelBLR_1d.png -------------------------------------------------------------------------------- /raw_data/Percipitation_geologictimescale/MadhuraAnalysis/GPtests/2018-05-29a_3deg/results/Data_vs_Model_1d.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EarthByte/paleoclimate-reconstruction/HEAD/raw_data/Percipitation_geologictimescale/MadhuraAnalysis/GPtests/2018-05-29a_3deg/results/Data_vs_Model_1d.png -------------------------------------------------------------------------------- /raw_data/Percipitation_geologictimescale/MadhuraAnalysis/GPtests/2018-05-29a_3deg/results/inputdata_X_blr.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EarthByte/paleoclimate-reconstruction/HEAD/raw_data/Percipitation_geologictimescale/MadhuraAnalysis/GPtests/2018-05-29a_3deg/results/inputdata_X_blr.csv -------------------------------------------------------------------------------- /raw_data/Percipitation_geologictimescale/MadhuraAnalysis/GPtests/2018-05-29b_3deg/code/gpmc.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EarthByte/paleoclimate-reconstruction/HEAD/raw_data/Percipitation_geologictimescale/MadhuraAnalysis/GPtests/2018-05-29b_3deg/code/gpmc.py -------------------------------------------------------------------------------- /raw_data/Percipitation_geologictimescale/MadhuraAnalysis/GPtests/2018-05-29b_3deg/code/run_GPplus.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EarthByte/paleoclimate-reconstruction/HEAD/raw_data/Percipitation_geologictimescale/MadhuraAnalysis/GPtests/2018-05-29b_3deg/code/run_GPplus.py -------------------------------------------------------------------------------- /raw_data/Percipitation_geologictimescale/MadhuraAnalysis/GPtests/2018-05-29b_3deg/results/inputdata_X_gp.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EarthByte/paleoclimate-reconstruction/HEAD/raw_data/Percipitation_geologictimescale/MadhuraAnalysis/GPtests/2018-05-29b_3deg/results/inputdata_X_gp.csv -------------------------------------------------------------------------------- /raw_data/Percipitation_geologictimescale/MadhuraAnalysis/GPtests/2018-05-29b_3deg/results/minmaxscale_BLR.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EarthByte/paleoclimate-reconstruction/HEAD/raw_data/Percipitation_geologictimescale/MadhuraAnalysis/GPtests/2018-05-29b_3deg/results/minmaxscale_BLR.csv -------------------------------------------------------------------------------- /raw_data/Percipitation_geologictimescale/MadhuraAnalysis/GPtests/2018-05-29b_3deg/results/minmaxscale_GP.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EarthByte/paleoclimate-reconstruction/HEAD/raw_data/Percipitation_geologictimescale/MadhuraAnalysis/GPtests/2018-05-29b_3deg/results/minmaxscale_GP.csv -------------------------------------------------------------------------------- /raw_data/precipitation_gpmodel_data.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EarthByte/paleoclimate-reconstruction/HEAD/raw_data/precipitation_gpmodel_data.csv -------------------------------------------------------------------------------- /reconstruction_prediction/.~lock.results_all_14Mtrain_elev.csv#: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EarthByte/paleoclimate-reconstruction/HEAD/reconstruction_prediction/.~lock.results_all_14Mtrain_elev.csv# -------------------------------------------------------------------------------- /reconstruction_prediction/missclassification.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EarthByte/paleoclimate-reconstruction/HEAD/reconstruction_prediction/missclassification.csv -------------------------------------------------------------------------------- /reconstruction_prediction/model/cubic_basis.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EarthByte/paleoclimate-reconstruction/HEAD/reconstruction_prediction/model/cubic_basis.m -------------------------------------------------------------------------------- /reconstruction_prediction/model/deposit_input_all_eras_new.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EarthByte/paleoclimate-reconstruction/HEAD/reconstruction_prediction/model/deposit_input_all_eras_new.csv -------------------------------------------------------------------------------- /reconstruction_prediction/model/figures/eocene.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EarthByte/paleoclimate-reconstruction/HEAD/reconstruction_prediction/model/figures/eocene.png -------------------------------------------------------------------------------- /reconstruction_prediction/model/figures/eocene_lat.fig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EarthByte/paleoclimate-reconstruction/HEAD/reconstruction_prediction/model/figures/eocene_lat.fig -------------------------------------------------------------------------------- /reconstruction_prediction/model/figures/eocene_lat.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EarthByte/paleoclimate-reconstruction/HEAD/reconstruction_prediction/model/figures/eocene_lat.png -------------------------------------------------------------------------------- /reconstruction_prediction/model/figures/miocene.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EarthByte/paleoclimate-reconstruction/HEAD/reconstruction_prediction/model/figures/miocene.png -------------------------------------------------------------------------------- /reconstruction_prediction/model/figures/miocene_lat.fig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EarthByte/paleoclimate-reconstruction/HEAD/reconstruction_prediction/model/figures/miocene_lat.fig -------------------------------------------------------------------------------- /reconstruction_prediction/model/figures/miocene_lat.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EarthByte/paleoclimate-reconstruction/HEAD/reconstruction_prediction/model/figures/miocene_lat.png -------------------------------------------------------------------------------- /reconstruction_prediction/model/figures/reg_coeff.fig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EarthByte/paleoclimate-reconstruction/HEAD/reconstruction_prediction/model/figures/reg_coeff.fig -------------------------------------------------------------------------------- /reconstruction_prediction/model/figures/reg_coeff.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EarthByte/paleoclimate-reconstruction/HEAD/reconstruction_prediction/model/figures/reg_coeff.jpg -------------------------------------------------------------------------------- /reconstruction_prediction/model/figures/reg_coeff_histograms.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EarthByte/paleoclimate-reconstruction/HEAD/reconstruction_prediction/model/figures/reg_coeff_histograms.png -------------------------------------------------------------------------------- /reconstruction_prediction/model/figures/scatter_miocene.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EarthByte/paleoclimate-reconstruction/HEAD/reconstruction_prediction/model/figures/scatter_miocene.png -------------------------------------------------------------------------------- /reconstruction_prediction/model/figures/scatterplots.fig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EarthByte/paleoclimate-reconstruction/HEAD/reconstruction_prediction/model/figures/scatterplots.fig -------------------------------------------------------------------------------- /reconstruction_prediction/model/figures/scatterplots.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EarthByte/paleoclimate-reconstruction/HEAD/reconstruction_prediction/model/figures/scatterplots.png -------------------------------------------------------------------------------- /reconstruction_prediction/model/geo_input_all_eras_new.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EarthByte/paleoclimate-reconstruction/HEAD/reconstruction_prediction/model/geo_input_all_eras_new.csv -------------------------------------------------------------------------------- /reconstruction_prediction/model/jbfill.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EarthByte/paleoclimate-reconstruction/HEAD/reconstruction_prediction/model/jbfill.m -------------------------------------------------------------------------------- /reconstruction_prediction/model/lin_basis.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EarthByte/paleoclimate-reconstruction/HEAD/reconstruction_prediction/model/lin_basis.m -------------------------------------------------------------------------------- /reconstruction_prediction/model/missclassification.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EarthByte/paleoclimate-reconstruction/HEAD/reconstruction_prediction/model/missclassification.csv -------------------------------------------------------------------------------- /reconstruction_prediction/model/non_parametric_precip_vs_lat.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EarthByte/paleoclimate-reconstruction/HEAD/reconstruction_prediction/model/non_parametric_precip_vs_lat.m -------------------------------------------------------------------------------- /reconstruction_prediction/model/non_parametric_precip_vs_lat_geo_dep_mar13.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EarthByte/paleoclimate-reconstruction/HEAD/reconstruction_prediction/model/non_parametric_precip_vs_lat_geo_dep_mar13.m -------------------------------------------------------------------------------- /reconstruction_prediction/model/num2str(era(j)): -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EarthByte/paleoclimate-reconstruction/HEAD/reconstruction_prediction/model/num2str(era(j)) -------------------------------------------------------------------------------- /reconstruction_prediction/model/precipinput_14Ma_v2_38.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EarthByte/paleoclimate-reconstruction/HEAD/reconstruction_prediction/model/precipinput_14Ma_v2_38.csv -------------------------------------------------------------------------------- /reconstruction_prediction/model/resultstrain_testall.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EarthByte/paleoclimate-reconstruction/HEAD/reconstruction_prediction/model/resultstrain_testall.csv -------------------------------------------------------------------------------- /reconstruction_prediction/model/resultstrain_testall_elev.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EarthByte/paleoclimate-reconstruction/HEAD/reconstruction_prediction/model/resultstrain_testall_elev.csv -------------------------------------------------------------------------------- /reconstruction_prediction/model/thinplate_basis.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EarthByte/paleoclimate-reconstruction/HEAD/reconstruction_prediction/model/thinplate_basis.m -------------------------------------------------------------------------------- /reconstruction_prediction/plot_prediction_deposit_cartopy.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EarthByte/paleoclimate-reconstruction/HEAD/reconstruction_prediction/plot_prediction_deposit_cartopy.py -------------------------------------------------------------------------------- /reconstruction_prediction/plot_prediction_precitipation_cartopy.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EarthByte/paleoclimate-reconstruction/HEAD/reconstruction_prediction/plot_prediction_precitipation_cartopy.py -------------------------------------------------------------------------------- /reconstruction_prediction/results_all_14Mtrain.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EarthByte/paleoclimate-reconstruction/HEAD/reconstruction_prediction/results_all_14Mtrain.csv -------------------------------------------------------------------------------- /reconstruction_prediction/results_all_14Mtrain_elev.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EarthByte/paleoclimate-reconstruction/HEAD/reconstruction_prediction/results_all_14Mtrain_elev.csv -------------------------------------------------------------------------------- /reconstruction_prediction/results_depositsprecip/coal/map_elev/era101results.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EarthByte/paleoclimate-reconstruction/HEAD/reconstruction_prediction/results_depositsprecip/coal/map_elev/era101results.pdf -------------------------------------------------------------------------------- /reconstruction_prediction/results_depositsprecip/coal/map_elev/era129results.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EarthByte/paleoclimate-reconstruction/HEAD/reconstruction_prediction/results_depositsprecip/coal/map_elev/era129results.pdf -------------------------------------------------------------------------------- /reconstruction_prediction/results_depositsprecip/coal/map_elev/era14results.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EarthByte/paleoclimate-reconstruction/HEAD/reconstruction_prediction/results_depositsprecip/coal/map_elev/era14results.pdf -------------------------------------------------------------------------------- /reconstruction_prediction/results_depositsprecip/coal/map_elev/era154results.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EarthByte/paleoclimate-reconstruction/HEAD/reconstruction_prediction/results_depositsprecip/coal/map_elev/era154results.pdf -------------------------------------------------------------------------------- /reconstruction_prediction/results_depositsprecip/coal/map_elev/era182results.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EarthByte/paleoclimate-reconstruction/HEAD/reconstruction_prediction/results_depositsprecip/coal/map_elev/era182results.pdf -------------------------------------------------------------------------------- /reconstruction_prediction/results_depositsprecip/coal/map_elev/era219results.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EarthByte/paleoclimate-reconstruction/HEAD/reconstruction_prediction/results_depositsprecip/coal/map_elev/era219results.pdf -------------------------------------------------------------------------------- /reconstruction_prediction/results_depositsprecip/coal/map_elev/era242results.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EarthByte/paleoclimate-reconstruction/HEAD/reconstruction_prediction/results_depositsprecip/coal/map_elev/era242results.pdf -------------------------------------------------------------------------------- /reconstruction_prediction/results_depositsprecip/coal/map_elev/era249results.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EarthByte/paleoclimate-reconstruction/HEAD/reconstruction_prediction/results_depositsprecip/coal/map_elev/era249results.pdf -------------------------------------------------------------------------------- /reconstruction_prediction/results_depositsprecip/coal/map_elev/era38results.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EarthByte/paleoclimate-reconstruction/HEAD/reconstruction_prediction/results_depositsprecip/coal/map_elev/era38results.pdf -------------------------------------------------------------------------------- /reconstruction_prediction/results_depositsprecip/coal/map_elev/era40results.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EarthByte/paleoclimate-reconstruction/HEAD/reconstruction_prediction/results_depositsprecip/coal/map_elev/era40results.pdf -------------------------------------------------------------------------------- /reconstruction_prediction/results_depositsprecip/coal/map_elev/era51results.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EarthByte/paleoclimate-reconstruction/HEAD/reconstruction_prediction/results_depositsprecip/coal/map_elev/era51results.pdf -------------------------------------------------------------------------------- /reconstruction_prediction/results_depositsprecip/coal/map_elev/era61results.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EarthByte/paleoclimate-reconstruction/HEAD/reconstruction_prediction/results_depositsprecip/coal/map_elev/era61results.pdf -------------------------------------------------------------------------------- /reconstruction_prediction/results_depositsprecip/coal/map_elev/era77results.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EarthByte/paleoclimate-reconstruction/HEAD/reconstruction_prediction/results_depositsprecip/coal/map_elev/era77results.pdf -------------------------------------------------------------------------------- /reconstruction_prediction/results_depositsprecip/coal/map_prediction/era101results.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EarthByte/paleoclimate-reconstruction/HEAD/reconstruction_prediction/results_depositsprecip/coal/map_prediction/era101results.pdf -------------------------------------------------------------------------------- /reconstruction_prediction/results_depositsprecip/coal/map_prediction/era129results.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EarthByte/paleoclimate-reconstruction/HEAD/reconstruction_prediction/results_depositsprecip/coal/map_prediction/era129results.pdf -------------------------------------------------------------------------------- /reconstruction_prediction/results_depositsprecip/coal/map_prediction/era14results.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EarthByte/paleoclimate-reconstruction/HEAD/reconstruction_prediction/results_depositsprecip/coal/map_prediction/era14results.pdf -------------------------------------------------------------------------------- /reconstruction_prediction/results_depositsprecip/coal/map_prediction/era154results.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EarthByte/paleoclimate-reconstruction/HEAD/reconstruction_prediction/results_depositsprecip/coal/map_prediction/era154results.pdf -------------------------------------------------------------------------------- /reconstruction_prediction/results_depositsprecip/coal/map_prediction/era182results.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EarthByte/paleoclimate-reconstruction/HEAD/reconstruction_prediction/results_depositsprecip/coal/map_prediction/era182results.pdf -------------------------------------------------------------------------------- /reconstruction_prediction/results_depositsprecip/coal/map_prediction/era219results.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EarthByte/paleoclimate-reconstruction/HEAD/reconstruction_prediction/results_depositsprecip/coal/map_prediction/era219results.pdf -------------------------------------------------------------------------------- /reconstruction_prediction/results_depositsprecip/coal/map_prediction/era242results.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EarthByte/paleoclimate-reconstruction/HEAD/reconstruction_prediction/results_depositsprecip/coal/map_prediction/era242results.pdf -------------------------------------------------------------------------------- /reconstruction_prediction/results_depositsprecip/coal/map_prediction/era249results.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EarthByte/paleoclimate-reconstruction/HEAD/reconstruction_prediction/results_depositsprecip/coal/map_prediction/era249results.pdf -------------------------------------------------------------------------------- /reconstruction_prediction/results_depositsprecip/coal/map_prediction/era38results.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EarthByte/paleoclimate-reconstruction/HEAD/reconstruction_prediction/results_depositsprecip/coal/map_prediction/era38results.pdf -------------------------------------------------------------------------------- /reconstruction_prediction/results_depositsprecip/coal/map_prediction/era39results.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EarthByte/paleoclimate-reconstruction/HEAD/reconstruction_prediction/results_depositsprecip/coal/map_prediction/era39results.pdf -------------------------------------------------------------------------------- /reconstruction_prediction/results_depositsprecip/coal/map_prediction/era40results.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EarthByte/paleoclimate-reconstruction/HEAD/reconstruction_prediction/results_depositsprecip/coal/map_prediction/era40results.pdf -------------------------------------------------------------------------------- /reconstruction_prediction/results_depositsprecip/coal/map_prediction/era51results.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EarthByte/paleoclimate-reconstruction/HEAD/reconstruction_prediction/results_depositsprecip/coal/map_prediction/era51results.pdf -------------------------------------------------------------------------------- /reconstruction_prediction/results_depositsprecip/coal/map_prediction/era61results.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EarthByte/paleoclimate-reconstruction/HEAD/reconstruction_prediction/results_depositsprecip/coal/map_prediction/era61results.pdf -------------------------------------------------------------------------------- /reconstruction_prediction/results_depositsprecip/coal/map_prediction/era77results.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EarthByte/paleoclimate-reconstruction/HEAD/reconstruction_prediction/results_depositsprecip/coal/map_prediction/era77results.pdf -------------------------------------------------------------------------------- /reconstruction_prediction/results_depositsprecip/coal/map_prediction_uncert_/era101results.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EarthByte/paleoclimate-reconstruction/HEAD/reconstruction_prediction/results_depositsprecip/coal/map_prediction_uncert_/era101results.pdf -------------------------------------------------------------------------------- /reconstruction_prediction/results_depositsprecip/coal/map_prediction_uncert_/era129results.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EarthByte/paleoclimate-reconstruction/HEAD/reconstruction_prediction/results_depositsprecip/coal/map_prediction_uncert_/era129results.pdf -------------------------------------------------------------------------------- /reconstruction_prediction/results_depositsprecip/coal/map_prediction_uncert_/era14results.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EarthByte/paleoclimate-reconstruction/HEAD/reconstruction_prediction/results_depositsprecip/coal/map_prediction_uncert_/era14results.pdf -------------------------------------------------------------------------------- /reconstruction_prediction/results_depositsprecip/coal/map_prediction_uncert_/era154results.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EarthByte/paleoclimate-reconstruction/HEAD/reconstruction_prediction/results_depositsprecip/coal/map_prediction_uncert_/era154results.pdf -------------------------------------------------------------------------------- /reconstruction_prediction/results_depositsprecip/coal/map_prediction_uncert_/era182results.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EarthByte/paleoclimate-reconstruction/HEAD/reconstruction_prediction/results_depositsprecip/coal/map_prediction_uncert_/era182results.pdf -------------------------------------------------------------------------------- /reconstruction_prediction/results_depositsprecip/coal/map_prediction_uncert_/era219results.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EarthByte/paleoclimate-reconstruction/HEAD/reconstruction_prediction/results_depositsprecip/coal/map_prediction_uncert_/era219results.pdf -------------------------------------------------------------------------------- /reconstruction_prediction/results_depositsprecip/coal/map_prediction_uncert_/era242results.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EarthByte/paleoclimate-reconstruction/HEAD/reconstruction_prediction/results_depositsprecip/coal/map_prediction_uncert_/era242results.pdf -------------------------------------------------------------------------------- /reconstruction_prediction/results_depositsprecip/coal/map_prediction_uncert_/era249results.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EarthByte/paleoclimate-reconstruction/HEAD/reconstruction_prediction/results_depositsprecip/coal/map_prediction_uncert_/era249results.pdf -------------------------------------------------------------------------------- /reconstruction_prediction/results_depositsprecip/coal/map_prediction_uncert_/era38results.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EarthByte/paleoclimate-reconstruction/HEAD/reconstruction_prediction/results_depositsprecip/coal/map_prediction_uncert_/era38results.pdf -------------------------------------------------------------------------------- /reconstruction_prediction/results_depositsprecip/coal/map_prediction_uncert_/era39results.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EarthByte/paleoclimate-reconstruction/HEAD/reconstruction_prediction/results_depositsprecip/coal/map_prediction_uncert_/era39results.pdf -------------------------------------------------------------------------------- /reconstruction_prediction/results_depositsprecip/coal/map_prediction_uncert_/era40results.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EarthByte/paleoclimate-reconstruction/HEAD/reconstruction_prediction/results_depositsprecip/coal/map_prediction_uncert_/era40results.pdf -------------------------------------------------------------------------------- /reconstruction_prediction/results_depositsprecip/coal/map_prediction_uncert_/era51results.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EarthByte/paleoclimate-reconstruction/HEAD/reconstruction_prediction/results_depositsprecip/coal/map_prediction_uncert_/era51results.pdf -------------------------------------------------------------------------------- /reconstruction_prediction/results_depositsprecip/coal/map_prediction_uncert_/era61results.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EarthByte/paleoclimate-reconstruction/HEAD/reconstruction_prediction/results_depositsprecip/coal/map_prediction_uncert_/era61results.pdf -------------------------------------------------------------------------------- /reconstruction_prediction/results_depositsprecip/coal/map_prediction_uncert_/era77results.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EarthByte/paleoclimate-reconstruction/HEAD/reconstruction_prediction/results_depositsprecip/coal/map_prediction_uncert_/era77results.pdf -------------------------------------------------------------------------------- /reconstruction_prediction/results_depositsprecip/era101results.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EarthByte/paleoclimate-reconstruction/HEAD/reconstruction_prediction/results_depositsprecip/era101results.csv -------------------------------------------------------------------------------- /reconstruction_prediction/results_depositsprecip/era129results.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EarthByte/paleoclimate-reconstruction/HEAD/reconstruction_prediction/results_depositsprecip/era129results.csv -------------------------------------------------------------------------------- /reconstruction_prediction/results_depositsprecip/era14results.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EarthByte/paleoclimate-reconstruction/HEAD/reconstruction_prediction/results_depositsprecip/era14results.csv -------------------------------------------------------------------------------- /reconstruction_prediction/results_depositsprecip/era154results.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EarthByte/paleoclimate-reconstruction/HEAD/reconstruction_prediction/results_depositsprecip/era154results.csv -------------------------------------------------------------------------------- /reconstruction_prediction/results_depositsprecip/era182results.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EarthByte/paleoclimate-reconstruction/HEAD/reconstruction_prediction/results_depositsprecip/era182results.csv -------------------------------------------------------------------------------- /reconstruction_prediction/results_depositsprecip/era219results.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EarthByte/paleoclimate-reconstruction/HEAD/reconstruction_prediction/results_depositsprecip/era219results.csv -------------------------------------------------------------------------------- /reconstruction_prediction/results_depositsprecip/era242results.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EarthByte/paleoclimate-reconstruction/HEAD/reconstruction_prediction/results_depositsprecip/era242results.csv -------------------------------------------------------------------------------- /reconstruction_prediction/results_depositsprecip/era249results.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EarthByte/paleoclimate-reconstruction/HEAD/reconstruction_prediction/results_depositsprecip/era249results.csv -------------------------------------------------------------------------------- /reconstruction_prediction/results_depositsprecip/era38results.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EarthByte/paleoclimate-reconstruction/HEAD/reconstruction_prediction/results_depositsprecip/era38results.csv -------------------------------------------------------------------------------- /reconstruction_prediction/results_depositsprecip/era39results.csv: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /reconstruction_prediction/results_depositsprecip/era40results.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EarthByte/paleoclimate-reconstruction/HEAD/reconstruction_prediction/results_depositsprecip/era40results.csv -------------------------------------------------------------------------------- /reconstruction_prediction/results_depositsprecip/era51results.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EarthByte/paleoclimate-reconstruction/HEAD/reconstruction_prediction/results_depositsprecip/era51results.csv -------------------------------------------------------------------------------- /reconstruction_prediction/results_depositsprecip/era61results.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EarthByte/paleoclimate-reconstruction/HEAD/reconstruction_prediction/results_depositsprecip/era61results.csv -------------------------------------------------------------------------------- /reconstruction_prediction/results_depositsprecip/era77results.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EarthByte/paleoclimate-reconstruction/HEAD/reconstruction_prediction/results_depositsprecip/era77results.csv -------------------------------------------------------------------------------- /reconstruction_prediction/results_depositsprecip/evaporites/map_prediction/era101results.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EarthByte/paleoclimate-reconstruction/HEAD/reconstruction_prediction/results_depositsprecip/evaporites/map_prediction/era101results.pdf -------------------------------------------------------------------------------- /reconstruction_prediction/results_depositsprecip/evaporites/map_prediction/era129results.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EarthByte/paleoclimate-reconstruction/HEAD/reconstruction_prediction/results_depositsprecip/evaporites/map_prediction/era129results.pdf -------------------------------------------------------------------------------- /reconstruction_prediction/results_depositsprecip/evaporites/map_prediction/era14results.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EarthByte/paleoclimate-reconstruction/HEAD/reconstruction_prediction/results_depositsprecip/evaporites/map_prediction/era14results.pdf -------------------------------------------------------------------------------- /reconstruction_prediction/results_depositsprecip/evaporites/map_prediction/era154results.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EarthByte/paleoclimate-reconstruction/HEAD/reconstruction_prediction/results_depositsprecip/evaporites/map_prediction/era154results.pdf -------------------------------------------------------------------------------- /reconstruction_prediction/results_depositsprecip/evaporites/map_prediction/era182results.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EarthByte/paleoclimate-reconstruction/HEAD/reconstruction_prediction/results_depositsprecip/evaporites/map_prediction/era182results.pdf -------------------------------------------------------------------------------- /reconstruction_prediction/results_depositsprecip/evaporites/map_prediction/era219results.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EarthByte/paleoclimate-reconstruction/HEAD/reconstruction_prediction/results_depositsprecip/evaporites/map_prediction/era219results.pdf -------------------------------------------------------------------------------- /reconstruction_prediction/results_depositsprecip/evaporites/map_prediction/era242results.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EarthByte/paleoclimate-reconstruction/HEAD/reconstruction_prediction/results_depositsprecip/evaporites/map_prediction/era242results.pdf -------------------------------------------------------------------------------- /reconstruction_prediction/results_depositsprecip/evaporites/map_prediction/era249results.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EarthByte/paleoclimate-reconstruction/HEAD/reconstruction_prediction/results_depositsprecip/evaporites/map_prediction/era249results.pdf -------------------------------------------------------------------------------- /reconstruction_prediction/results_depositsprecip/evaporites/map_prediction/era38results.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EarthByte/paleoclimate-reconstruction/HEAD/reconstruction_prediction/results_depositsprecip/evaporites/map_prediction/era38results.pdf -------------------------------------------------------------------------------- /reconstruction_prediction/results_depositsprecip/evaporites/map_prediction/era39results.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EarthByte/paleoclimate-reconstruction/HEAD/reconstruction_prediction/results_depositsprecip/evaporites/map_prediction/era39results.pdf -------------------------------------------------------------------------------- /reconstruction_prediction/results_depositsprecip/evaporites/map_prediction/era40results.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EarthByte/paleoclimate-reconstruction/HEAD/reconstruction_prediction/results_depositsprecip/evaporites/map_prediction/era40results.pdf -------------------------------------------------------------------------------- /reconstruction_prediction/results_depositsprecip/evaporites/map_prediction/era51results.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EarthByte/paleoclimate-reconstruction/HEAD/reconstruction_prediction/results_depositsprecip/evaporites/map_prediction/era51results.pdf -------------------------------------------------------------------------------- /reconstruction_prediction/results_depositsprecip/evaporites/map_prediction/era61results.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EarthByte/paleoclimate-reconstruction/HEAD/reconstruction_prediction/results_depositsprecip/evaporites/map_prediction/era61results.pdf -------------------------------------------------------------------------------- /reconstruction_prediction/results_depositsprecip/evaporites/map_prediction/era77results.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EarthByte/paleoclimate-reconstruction/HEAD/reconstruction_prediction/results_depositsprecip/evaporites/map_prediction/era77results.pdf -------------------------------------------------------------------------------- /reconstruction_prediction/results_depositsprecip/evaporites/map_prediction_uncert_/era101results.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EarthByte/paleoclimate-reconstruction/HEAD/reconstruction_prediction/results_depositsprecip/evaporites/map_prediction_uncert_/era101results.pdf -------------------------------------------------------------------------------- /reconstruction_prediction/results_depositsprecip/evaporites/map_prediction_uncert_/era129results.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EarthByte/paleoclimate-reconstruction/HEAD/reconstruction_prediction/results_depositsprecip/evaporites/map_prediction_uncert_/era129results.pdf -------------------------------------------------------------------------------- /reconstruction_prediction/results_depositsprecip/evaporites/map_prediction_uncert_/era14results.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EarthByte/paleoclimate-reconstruction/HEAD/reconstruction_prediction/results_depositsprecip/evaporites/map_prediction_uncert_/era14results.pdf -------------------------------------------------------------------------------- /reconstruction_prediction/results_depositsprecip/evaporites/map_prediction_uncert_/era154results.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EarthByte/paleoclimate-reconstruction/HEAD/reconstruction_prediction/results_depositsprecip/evaporites/map_prediction_uncert_/era154results.pdf -------------------------------------------------------------------------------- /reconstruction_prediction/results_depositsprecip/evaporites/map_prediction_uncert_/era182results.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EarthByte/paleoclimate-reconstruction/HEAD/reconstruction_prediction/results_depositsprecip/evaporites/map_prediction_uncert_/era182results.pdf -------------------------------------------------------------------------------- /reconstruction_prediction/results_depositsprecip/evaporites/map_prediction_uncert_/era219results.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EarthByte/paleoclimate-reconstruction/HEAD/reconstruction_prediction/results_depositsprecip/evaporites/map_prediction_uncert_/era219results.pdf -------------------------------------------------------------------------------- /reconstruction_prediction/results_depositsprecip/evaporites/map_prediction_uncert_/era242results.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EarthByte/paleoclimate-reconstruction/HEAD/reconstruction_prediction/results_depositsprecip/evaporites/map_prediction_uncert_/era242results.pdf -------------------------------------------------------------------------------- /reconstruction_prediction/results_depositsprecip/evaporites/map_prediction_uncert_/era249results.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EarthByte/paleoclimate-reconstruction/HEAD/reconstruction_prediction/results_depositsprecip/evaporites/map_prediction_uncert_/era249results.pdf -------------------------------------------------------------------------------- /reconstruction_prediction/results_depositsprecip/evaporites/map_prediction_uncert_/era38results.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EarthByte/paleoclimate-reconstruction/HEAD/reconstruction_prediction/results_depositsprecip/evaporites/map_prediction_uncert_/era38results.pdf -------------------------------------------------------------------------------- /reconstruction_prediction/results_depositsprecip/evaporites/map_prediction_uncert_/era39results.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EarthByte/paleoclimate-reconstruction/HEAD/reconstruction_prediction/results_depositsprecip/evaporites/map_prediction_uncert_/era39results.pdf -------------------------------------------------------------------------------- /reconstruction_prediction/results_depositsprecip/evaporites/map_prediction_uncert_/era40results.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EarthByte/paleoclimate-reconstruction/HEAD/reconstruction_prediction/results_depositsprecip/evaporites/map_prediction_uncert_/era40results.pdf -------------------------------------------------------------------------------- /reconstruction_prediction/results_depositsprecip/evaporites/map_prediction_uncert_/era51results.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EarthByte/paleoclimate-reconstruction/HEAD/reconstruction_prediction/results_depositsprecip/evaporites/map_prediction_uncert_/era51results.pdf -------------------------------------------------------------------------------- /reconstruction_prediction/results_depositsprecip/evaporites/map_prediction_uncert_/era61results.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EarthByte/paleoclimate-reconstruction/HEAD/reconstruction_prediction/results_depositsprecip/evaporites/map_prediction_uncert_/era61results.pdf -------------------------------------------------------------------------------- /reconstruction_prediction/results_depositsprecip/evaporites/map_prediction_uncert_/era77results.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EarthByte/paleoclimate-reconstruction/HEAD/reconstruction_prediction/results_depositsprecip/evaporites/map_prediction_uncert_/era77results.pdf -------------------------------------------------------------------------------- /reconstruction_prediction/results_depositsprecip/glacial/map_prediction/era101results.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EarthByte/paleoclimate-reconstruction/HEAD/reconstruction_prediction/results_depositsprecip/glacial/map_prediction/era101results.pdf -------------------------------------------------------------------------------- /reconstruction_prediction/results_depositsprecip/glacial/map_prediction/era129results.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EarthByte/paleoclimate-reconstruction/HEAD/reconstruction_prediction/results_depositsprecip/glacial/map_prediction/era129results.pdf -------------------------------------------------------------------------------- /reconstruction_prediction/results_depositsprecip/glacial/map_prediction/era14results.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EarthByte/paleoclimate-reconstruction/HEAD/reconstruction_prediction/results_depositsprecip/glacial/map_prediction/era14results.pdf -------------------------------------------------------------------------------- /reconstruction_prediction/results_depositsprecip/glacial/map_prediction/era154results.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EarthByte/paleoclimate-reconstruction/HEAD/reconstruction_prediction/results_depositsprecip/glacial/map_prediction/era154results.pdf -------------------------------------------------------------------------------- /reconstruction_prediction/results_depositsprecip/glacial/map_prediction/era182results.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EarthByte/paleoclimate-reconstruction/HEAD/reconstruction_prediction/results_depositsprecip/glacial/map_prediction/era182results.pdf -------------------------------------------------------------------------------- /reconstruction_prediction/results_depositsprecip/glacial/map_prediction/era219results.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EarthByte/paleoclimate-reconstruction/HEAD/reconstruction_prediction/results_depositsprecip/glacial/map_prediction/era219results.pdf -------------------------------------------------------------------------------- /reconstruction_prediction/results_depositsprecip/glacial/map_prediction/era242results.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EarthByte/paleoclimate-reconstruction/HEAD/reconstruction_prediction/results_depositsprecip/glacial/map_prediction/era242results.pdf -------------------------------------------------------------------------------- /reconstruction_prediction/results_depositsprecip/glacial/map_prediction/era249results.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EarthByte/paleoclimate-reconstruction/HEAD/reconstruction_prediction/results_depositsprecip/glacial/map_prediction/era249results.pdf -------------------------------------------------------------------------------- /reconstruction_prediction/results_depositsprecip/glacial/map_prediction/era38results.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EarthByte/paleoclimate-reconstruction/HEAD/reconstruction_prediction/results_depositsprecip/glacial/map_prediction/era38results.pdf -------------------------------------------------------------------------------- /reconstruction_prediction/results_depositsprecip/glacial/map_prediction/era39results.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EarthByte/paleoclimate-reconstruction/HEAD/reconstruction_prediction/results_depositsprecip/glacial/map_prediction/era39results.pdf -------------------------------------------------------------------------------- /reconstruction_prediction/results_depositsprecip/glacial/map_prediction/era40results.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EarthByte/paleoclimate-reconstruction/HEAD/reconstruction_prediction/results_depositsprecip/glacial/map_prediction/era40results.pdf -------------------------------------------------------------------------------- /reconstruction_prediction/results_depositsprecip/glacial/map_prediction/era51results.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EarthByte/paleoclimate-reconstruction/HEAD/reconstruction_prediction/results_depositsprecip/glacial/map_prediction/era51results.pdf -------------------------------------------------------------------------------- /reconstruction_prediction/results_depositsprecip/glacial/map_prediction/era61results.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EarthByte/paleoclimate-reconstruction/HEAD/reconstruction_prediction/results_depositsprecip/glacial/map_prediction/era61results.pdf -------------------------------------------------------------------------------- /reconstruction_prediction/results_depositsprecip/glacial/map_prediction/era77results.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EarthByte/paleoclimate-reconstruction/HEAD/reconstruction_prediction/results_depositsprecip/glacial/map_prediction/era77results.pdf -------------------------------------------------------------------------------- /reconstruction_prediction/results_depositsprecip/glacial/map_prediction_uncert_/era101results.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EarthByte/paleoclimate-reconstruction/HEAD/reconstruction_prediction/results_depositsprecip/glacial/map_prediction_uncert_/era101results.pdf -------------------------------------------------------------------------------- /reconstruction_prediction/results_depositsprecip/glacial/map_prediction_uncert_/era129results.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EarthByte/paleoclimate-reconstruction/HEAD/reconstruction_prediction/results_depositsprecip/glacial/map_prediction_uncert_/era129results.pdf -------------------------------------------------------------------------------- /reconstruction_prediction/results_depositsprecip/glacial/map_prediction_uncert_/era14results.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EarthByte/paleoclimate-reconstruction/HEAD/reconstruction_prediction/results_depositsprecip/glacial/map_prediction_uncert_/era14results.pdf -------------------------------------------------------------------------------- /reconstruction_prediction/results_depositsprecip/glacial/map_prediction_uncert_/era154results.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EarthByte/paleoclimate-reconstruction/HEAD/reconstruction_prediction/results_depositsprecip/glacial/map_prediction_uncert_/era154results.pdf -------------------------------------------------------------------------------- /reconstruction_prediction/results_depositsprecip/glacial/map_prediction_uncert_/era182results.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EarthByte/paleoclimate-reconstruction/HEAD/reconstruction_prediction/results_depositsprecip/glacial/map_prediction_uncert_/era182results.pdf -------------------------------------------------------------------------------- /reconstruction_prediction/results_depositsprecip/glacial/map_prediction_uncert_/era219results.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EarthByte/paleoclimate-reconstruction/HEAD/reconstruction_prediction/results_depositsprecip/glacial/map_prediction_uncert_/era219results.pdf -------------------------------------------------------------------------------- /reconstruction_prediction/results_depositsprecip/glacial/map_prediction_uncert_/era242results.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EarthByte/paleoclimate-reconstruction/HEAD/reconstruction_prediction/results_depositsprecip/glacial/map_prediction_uncert_/era242results.pdf -------------------------------------------------------------------------------- /reconstruction_prediction/results_depositsprecip/glacial/map_prediction_uncert_/era249results.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EarthByte/paleoclimate-reconstruction/HEAD/reconstruction_prediction/results_depositsprecip/glacial/map_prediction_uncert_/era249results.pdf -------------------------------------------------------------------------------- /reconstruction_prediction/results_depositsprecip/glacial/map_prediction_uncert_/era38results.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EarthByte/paleoclimate-reconstruction/HEAD/reconstruction_prediction/results_depositsprecip/glacial/map_prediction_uncert_/era38results.pdf -------------------------------------------------------------------------------- /reconstruction_prediction/results_depositsprecip/glacial/map_prediction_uncert_/era39results.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EarthByte/paleoclimate-reconstruction/HEAD/reconstruction_prediction/results_depositsprecip/glacial/map_prediction_uncert_/era39results.pdf -------------------------------------------------------------------------------- /reconstruction_prediction/results_depositsprecip/glacial/map_prediction_uncert_/era40results.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EarthByte/paleoclimate-reconstruction/HEAD/reconstruction_prediction/results_depositsprecip/glacial/map_prediction_uncert_/era40results.pdf -------------------------------------------------------------------------------- /reconstruction_prediction/results_depositsprecip/glacial/map_prediction_uncert_/era51results.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EarthByte/paleoclimate-reconstruction/HEAD/reconstruction_prediction/results_depositsprecip/glacial/map_prediction_uncert_/era51results.pdf -------------------------------------------------------------------------------- /reconstruction_prediction/results_depositsprecip/glacial/map_prediction_uncert_/era61results.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EarthByte/paleoclimate-reconstruction/HEAD/reconstruction_prediction/results_depositsprecip/glacial/map_prediction_uncert_/era61results.pdf -------------------------------------------------------------------------------- /reconstruction_prediction/results_depositsprecip/glacial/map_prediction_uncert_/era77results.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EarthByte/paleoclimate-reconstruction/HEAD/reconstruction_prediction/results_depositsprecip/glacial/map_prediction_uncert_/era77results.pdf -------------------------------------------------------------------------------- /reconstruction_prediction/results_depositsprecip/grids/101Ma_coal_actual.nc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EarthByte/paleoclimate-reconstruction/HEAD/reconstruction_prediction/results_depositsprecip/grids/101Ma_coal_actual.nc -------------------------------------------------------------------------------- /reconstruction_prediction/results_depositsprecip/grids/101Ma_coal_high.nc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EarthByte/paleoclimate-reconstruction/HEAD/reconstruction_prediction/results_depositsprecip/grids/101Ma_coal_high.nc -------------------------------------------------------------------------------- /reconstruction_prediction/results_depositsprecip/grids/101Ma_coal_low.nc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EarthByte/paleoclimate-reconstruction/HEAD/reconstruction_prediction/results_depositsprecip/grids/101Ma_coal_low.nc -------------------------------------------------------------------------------- /reconstruction_prediction/results_depositsprecip/grids/101Ma_coal_mean.nc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EarthByte/paleoclimate-reconstruction/HEAD/reconstruction_prediction/results_depositsprecip/grids/101Ma_coal_mean.nc -------------------------------------------------------------------------------- /reconstruction_prediction/results_depositsprecip/grids/101Ma_evap_actual.nc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EarthByte/paleoclimate-reconstruction/HEAD/reconstruction_prediction/results_depositsprecip/grids/101Ma_evap_actual.nc -------------------------------------------------------------------------------- /reconstruction_prediction/results_depositsprecip/grids/101Ma_evap_high.nc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EarthByte/paleoclimate-reconstruction/HEAD/reconstruction_prediction/results_depositsprecip/grids/101Ma_evap_high.nc -------------------------------------------------------------------------------- /reconstruction_prediction/results_depositsprecip/grids/101Ma_evap_low.nc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EarthByte/paleoclimate-reconstruction/HEAD/reconstruction_prediction/results_depositsprecip/grids/101Ma_evap_low.nc -------------------------------------------------------------------------------- /reconstruction_prediction/results_depositsprecip/grids/101Ma_evap_mean.nc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EarthByte/paleoclimate-reconstruction/HEAD/reconstruction_prediction/results_depositsprecip/grids/101Ma_evap_mean.nc -------------------------------------------------------------------------------- /reconstruction_prediction/results_depositsprecip/grids/101Ma_glacial_actual.nc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EarthByte/paleoclimate-reconstruction/HEAD/reconstruction_prediction/results_depositsprecip/grids/101Ma_glacial_actual.nc -------------------------------------------------------------------------------- /reconstruction_prediction/results_depositsprecip/grids/101Ma_glacial_high.nc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EarthByte/paleoclimate-reconstruction/HEAD/reconstruction_prediction/results_depositsprecip/grids/101Ma_glacial_high.nc -------------------------------------------------------------------------------- /reconstruction_prediction/results_depositsprecip/grids/101Ma_glacial_low.nc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EarthByte/paleoclimate-reconstruction/HEAD/reconstruction_prediction/results_depositsprecip/grids/101Ma_glacial_low.nc -------------------------------------------------------------------------------- /reconstruction_prediction/results_depositsprecip/grids/101Ma_glacial_mean.nc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EarthByte/paleoclimate-reconstruction/HEAD/reconstruction_prediction/results_depositsprecip/grids/101Ma_glacial_mean.nc -------------------------------------------------------------------------------- /reconstruction_prediction/results_depositsprecip/grids/101Ma_precip_high.nc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EarthByte/paleoclimate-reconstruction/HEAD/reconstruction_prediction/results_depositsprecip/grids/101Ma_precip_high.nc -------------------------------------------------------------------------------- /reconstruction_prediction/results_depositsprecip/grids/101Ma_precip_low.nc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EarthByte/paleoclimate-reconstruction/HEAD/reconstruction_prediction/results_depositsprecip/grids/101Ma_precip_low.nc -------------------------------------------------------------------------------- /reconstruction_prediction/results_depositsprecip/grids/101Ma_precip_mean.nc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EarthByte/paleoclimate-reconstruction/HEAD/reconstruction_prediction/results_depositsprecip/grids/101Ma_precip_mean.nc -------------------------------------------------------------------------------- /reconstruction_prediction/results_depositsprecip/grids/129Ma_coal_actual.nc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EarthByte/paleoclimate-reconstruction/HEAD/reconstruction_prediction/results_depositsprecip/grids/129Ma_coal_actual.nc -------------------------------------------------------------------------------- /reconstruction_prediction/results_depositsprecip/grids/129Ma_coal_high.nc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EarthByte/paleoclimate-reconstruction/HEAD/reconstruction_prediction/results_depositsprecip/grids/129Ma_coal_high.nc -------------------------------------------------------------------------------- /reconstruction_prediction/results_depositsprecip/grids/129Ma_coal_low.nc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EarthByte/paleoclimate-reconstruction/HEAD/reconstruction_prediction/results_depositsprecip/grids/129Ma_coal_low.nc -------------------------------------------------------------------------------- /reconstruction_prediction/results_depositsprecip/grids/129Ma_coal_mean.nc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EarthByte/paleoclimate-reconstruction/HEAD/reconstruction_prediction/results_depositsprecip/grids/129Ma_coal_mean.nc -------------------------------------------------------------------------------- /reconstruction_prediction/results_depositsprecip/grids/129Ma_evap_actual.nc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EarthByte/paleoclimate-reconstruction/HEAD/reconstruction_prediction/results_depositsprecip/grids/129Ma_evap_actual.nc -------------------------------------------------------------------------------- /reconstruction_prediction/results_depositsprecip/grids/129Ma_evap_high.nc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EarthByte/paleoclimate-reconstruction/HEAD/reconstruction_prediction/results_depositsprecip/grids/129Ma_evap_high.nc -------------------------------------------------------------------------------- /reconstruction_prediction/results_depositsprecip/grids/129Ma_evap_low.nc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EarthByte/paleoclimate-reconstruction/HEAD/reconstruction_prediction/results_depositsprecip/grids/129Ma_evap_low.nc -------------------------------------------------------------------------------- /reconstruction_prediction/results_depositsprecip/grids/129Ma_evap_mean.nc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EarthByte/paleoclimate-reconstruction/HEAD/reconstruction_prediction/results_depositsprecip/grids/129Ma_evap_mean.nc -------------------------------------------------------------------------------- /reconstruction_prediction/results_depositsprecip/grids/129Ma_glacial_actual.nc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EarthByte/paleoclimate-reconstruction/HEAD/reconstruction_prediction/results_depositsprecip/grids/129Ma_glacial_actual.nc -------------------------------------------------------------------------------- /reconstruction_prediction/results_depositsprecip/grids/129Ma_glacial_high.nc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EarthByte/paleoclimate-reconstruction/HEAD/reconstruction_prediction/results_depositsprecip/grids/129Ma_glacial_high.nc -------------------------------------------------------------------------------- /reconstruction_prediction/results_depositsprecip/grids/129Ma_glacial_low.nc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EarthByte/paleoclimate-reconstruction/HEAD/reconstruction_prediction/results_depositsprecip/grids/129Ma_glacial_low.nc -------------------------------------------------------------------------------- /reconstruction_prediction/results_depositsprecip/grids/129Ma_glacial_mean.nc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EarthByte/paleoclimate-reconstruction/HEAD/reconstruction_prediction/results_depositsprecip/grids/129Ma_glacial_mean.nc -------------------------------------------------------------------------------- /reconstruction_prediction/results_depositsprecip/grids/129Ma_precip_high.nc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EarthByte/paleoclimate-reconstruction/HEAD/reconstruction_prediction/results_depositsprecip/grids/129Ma_precip_high.nc -------------------------------------------------------------------------------- /reconstruction_prediction/results_depositsprecip/grids/129Ma_precip_low.nc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EarthByte/paleoclimate-reconstruction/HEAD/reconstruction_prediction/results_depositsprecip/grids/129Ma_precip_low.nc -------------------------------------------------------------------------------- /reconstruction_prediction/results_depositsprecip/grids/129Ma_precip_mean.nc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EarthByte/paleoclimate-reconstruction/HEAD/reconstruction_prediction/results_depositsprecip/grids/129Ma_precip_mean.nc -------------------------------------------------------------------------------- /reconstruction_prediction/results_depositsprecip/grids/14Ma_coal_actual.nc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EarthByte/paleoclimate-reconstruction/HEAD/reconstruction_prediction/results_depositsprecip/grids/14Ma_coal_actual.nc -------------------------------------------------------------------------------- /reconstruction_prediction/results_depositsprecip/grids/14Ma_coal_high.nc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EarthByte/paleoclimate-reconstruction/HEAD/reconstruction_prediction/results_depositsprecip/grids/14Ma_coal_high.nc -------------------------------------------------------------------------------- /reconstruction_prediction/results_depositsprecip/grids/14Ma_coal_low.nc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EarthByte/paleoclimate-reconstruction/HEAD/reconstruction_prediction/results_depositsprecip/grids/14Ma_coal_low.nc -------------------------------------------------------------------------------- /reconstruction_prediction/results_depositsprecip/grids/14Ma_coal_mean.nc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EarthByte/paleoclimate-reconstruction/HEAD/reconstruction_prediction/results_depositsprecip/grids/14Ma_coal_mean.nc -------------------------------------------------------------------------------- /reconstruction_prediction/results_depositsprecip/grids/14Ma_evap_actual.nc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EarthByte/paleoclimate-reconstruction/HEAD/reconstruction_prediction/results_depositsprecip/grids/14Ma_evap_actual.nc -------------------------------------------------------------------------------- /reconstruction_prediction/results_depositsprecip/grids/14Ma_evap_high.nc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EarthByte/paleoclimate-reconstruction/HEAD/reconstruction_prediction/results_depositsprecip/grids/14Ma_evap_high.nc -------------------------------------------------------------------------------- /reconstruction_prediction/results_depositsprecip/grids/14Ma_evap_low.nc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EarthByte/paleoclimate-reconstruction/HEAD/reconstruction_prediction/results_depositsprecip/grids/14Ma_evap_low.nc -------------------------------------------------------------------------------- /reconstruction_prediction/results_depositsprecip/grids/14Ma_evap_mean.nc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EarthByte/paleoclimate-reconstruction/HEAD/reconstruction_prediction/results_depositsprecip/grids/14Ma_evap_mean.nc -------------------------------------------------------------------------------- /reconstruction_prediction/results_depositsprecip/grids/14Ma_glacial_actual.nc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EarthByte/paleoclimate-reconstruction/HEAD/reconstruction_prediction/results_depositsprecip/grids/14Ma_glacial_actual.nc -------------------------------------------------------------------------------- /reconstruction_prediction/results_depositsprecip/grids/14Ma_glacial_high.nc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EarthByte/paleoclimate-reconstruction/HEAD/reconstruction_prediction/results_depositsprecip/grids/14Ma_glacial_high.nc -------------------------------------------------------------------------------- /reconstruction_prediction/results_depositsprecip/grids/14Ma_glacial_low.nc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EarthByte/paleoclimate-reconstruction/HEAD/reconstruction_prediction/results_depositsprecip/grids/14Ma_glacial_low.nc -------------------------------------------------------------------------------- /reconstruction_prediction/results_depositsprecip/grids/14Ma_glacial_mean.nc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EarthByte/paleoclimate-reconstruction/HEAD/reconstruction_prediction/results_depositsprecip/grids/14Ma_glacial_mean.nc -------------------------------------------------------------------------------- /reconstruction_prediction/results_depositsprecip/grids/14Ma_precip_actual.nc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EarthByte/paleoclimate-reconstruction/HEAD/reconstruction_prediction/results_depositsprecip/grids/14Ma_precip_actual.nc -------------------------------------------------------------------------------- /reconstruction_prediction/results_depositsprecip/grids/14Ma_precip_high.nc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EarthByte/paleoclimate-reconstruction/HEAD/reconstruction_prediction/results_depositsprecip/grids/14Ma_precip_high.nc -------------------------------------------------------------------------------- /reconstruction_prediction/results_depositsprecip/grids/14Ma_precip_low.nc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EarthByte/paleoclimate-reconstruction/HEAD/reconstruction_prediction/results_depositsprecip/grids/14Ma_precip_low.nc -------------------------------------------------------------------------------- /reconstruction_prediction/results_depositsprecip/grids/14Ma_precip_mean.nc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EarthByte/paleoclimate-reconstruction/HEAD/reconstruction_prediction/results_depositsprecip/grids/14Ma_precip_mean.nc -------------------------------------------------------------------------------- /reconstruction_prediction/results_depositsprecip/grids/154Ma_coal_actual.nc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EarthByte/paleoclimate-reconstruction/HEAD/reconstruction_prediction/results_depositsprecip/grids/154Ma_coal_actual.nc -------------------------------------------------------------------------------- /reconstruction_prediction/results_depositsprecip/grids/154Ma_coal_high.nc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EarthByte/paleoclimate-reconstruction/HEAD/reconstruction_prediction/results_depositsprecip/grids/154Ma_coal_high.nc -------------------------------------------------------------------------------- /reconstruction_prediction/results_depositsprecip/grids/154Ma_coal_low.nc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EarthByte/paleoclimate-reconstruction/HEAD/reconstruction_prediction/results_depositsprecip/grids/154Ma_coal_low.nc -------------------------------------------------------------------------------- /reconstruction_prediction/results_depositsprecip/grids/154Ma_coal_mean.nc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EarthByte/paleoclimate-reconstruction/HEAD/reconstruction_prediction/results_depositsprecip/grids/154Ma_coal_mean.nc -------------------------------------------------------------------------------- /reconstruction_prediction/results_depositsprecip/grids/154Ma_evap_actual.nc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EarthByte/paleoclimate-reconstruction/HEAD/reconstruction_prediction/results_depositsprecip/grids/154Ma_evap_actual.nc -------------------------------------------------------------------------------- /reconstruction_prediction/results_depositsprecip/grids/154Ma_evap_high.nc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EarthByte/paleoclimate-reconstruction/HEAD/reconstruction_prediction/results_depositsprecip/grids/154Ma_evap_high.nc -------------------------------------------------------------------------------- /reconstruction_prediction/results_depositsprecip/grids/154Ma_evap_low.nc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EarthByte/paleoclimate-reconstruction/HEAD/reconstruction_prediction/results_depositsprecip/grids/154Ma_evap_low.nc -------------------------------------------------------------------------------- /reconstruction_prediction/results_depositsprecip/grids/154Ma_evap_mean.nc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EarthByte/paleoclimate-reconstruction/HEAD/reconstruction_prediction/results_depositsprecip/grids/154Ma_evap_mean.nc -------------------------------------------------------------------------------- /reconstruction_prediction/results_depositsprecip/grids/154Ma_glacial_actual.nc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EarthByte/paleoclimate-reconstruction/HEAD/reconstruction_prediction/results_depositsprecip/grids/154Ma_glacial_actual.nc -------------------------------------------------------------------------------- /reconstruction_prediction/results_depositsprecip/grids/154Ma_glacial_high.nc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EarthByte/paleoclimate-reconstruction/HEAD/reconstruction_prediction/results_depositsprecip/grids/154Ma_glacial_high.nc -------------------------------------------------------------------------------- /reconstruction_prediction/results_depositsprecip/grids/154Ma_glacial_low.nc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EarthByte/paleoclimate-reconstruction/HEAD/reconstruction_prediction/results_depositsprecip/grids/154Ma_glacial_low.nc -------------------------------------------------------------------------------- /reconstruction_prediction/results_depositsprecip/grids/154Ma_glacial_mean.nc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EarthByte/paleoclimate-reconstruction/HEAD/reconstruction_prediction/results_depositsprecip/grids/154Ma_glacial_mean.nc -------------------------------------------------------------------------------- /reconstruction_prediction/results_depositsprecip/grids/154Ma_precip_high.nc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EarthByte/paleoclimate-reconstruction/HEAD/reconstruction_prediction/results_depositsprecip/grids/154Ma_precip_high.nc -------------------------------------------------------------------------------- /reconstruction_prediction/results_depositsprecip/grids/154Ma_precip_low.nc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EarthByte/paleoclimate-reconstruction/HEAD/reconstruction_prediction/results_depositsprecip/grids/154Ma_precip_low.nc -------------------------------------------------------------------------------- /reconstruction_prediction/results_depositsprecip/grids/154Ma_precip_mean.nc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EarthByte/paleoclimate-reconstruction/HEAD/reconstruction_prediction/results_depositsprecip/grids/154Ma_precip_mean.nc -------------------------------------------------------------------------------- /reconstruction_prediction/results_depositsprecip/grids/182Ma_coal_actual.nc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EarthByte/paleoclimate-reconstruction/HEAD/reconstruction_prediction/results_depositsprecip/grids/182Ma_coal_actual.nc -------------------------------------------------------------------------------- /reconstruction_prediction/results_depositsprecip/grids/182Ma_coal_high.nc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EarthByte/paleoclimate-reconstruction/HEAD/reconstruction_prediction/results_depositsprecip/grids/182Ma_coal_high.nc -------------------------------------------------------------------------------- /reconstruction_prediction/results_depositsprecip/grids/182Ma_coal_low.nc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EarthByte/paleoclimate-reconstruction/HEAD/reconstruction_prediction/results_depositsprecip/grids/182Ma_coal_low.nc -------------------------------------------------------------------------------- /reconstruction_prediction/results_depositsprecip/grids/182Ma_coal_mean.nc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EarthByte/paleoclimate-reconstruction/HEAD/reconstruction_prediction/results_depositsprecip/grids/182Ma_coal_mean.nc -------------------------------------------------------------------------------- /reconstruction_prediction/results_depositsprecip/grids/182Ma_evap_actual.nc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EarthByte/paleoclimate-reconstruction/HEAD/reconstruction_prediction/results_depositsprecip/grids/182Ma_evap_actual.nc -------------------------------------------------------------------------------- /reconstruction_prediction/results_depositsprecip/grids/182Ma_evap_high.nc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EarthByte/paleoclimate-reconstruction/HEAD/reconstruction_prediction/results_depositsprecip/grids/182Ma_evap_high.nc -------------------------------------------------------------------------------- /reconstruction_prediction/results_depositsprecip/grids/182Ma_evap_low.nc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EarthByte/paleoclimate-reconstruction/HEAD/reconstruction_prediction/results_depositsprecip/grids/182Ma_evap_low.nc -------------------------------------------------------------------------------- /reconstruction_prediction/results_depositsprecip/grids/182Ma_evap_mean.nc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EarthByte/paleoclimate-reconstruction/HEAD/reconstruction_prediction/results_depositsprecip/grids/182Ma_evap_mean.nc -------------------------------------------------------------------------------- /reconstruction_prediction/results_depositsprecip/grids/182Ma_glacial_actual.nc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EarthByte/paleoclimate-reconstruction/HEAD/reconstruction_prediction/results_depositsprecip/grids/182Ma_glacial_actual.nc -------------------------------------------------------------------------------- /reconstruction_prediction/results_depositsprecip/grids/182Ma_glacial_high.nc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EarthByte/paleoclimate-reconstruction/HEAD/reconstruction_prediction/results_depositsprecip/grids/182Ma_glacial_high.nc -------------------------------------------------------------------------------- /reconstruction_prediction/results_depositsprecip/grids/182Ma_glacial_low.nc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EarthByte/paleoclimate-reconstruction/HEAD/reconstruction_prediction/results_depositsprecip/grids/182Ma_glacial_low.nc -------------------------------------------------------------------------------- /reconstruction_prediction/results_depositsprecip/grids/182Ma_glacial_mean.nc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EarthByte/paleoclimate-reconstruction/HEAD/reconstruction_prediction/results_depositsprecip/grids/182Ma_glacial_mean.nc -------------------------------------------------------------------------------- /reconstruction_prediction/results_depositsprecip/grids/182Ma_precip_high.nc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EarthByte/paleoclimate-reconstruction/HEAD/reconstruction_prediction/results_depositsprecip/grids/182Ma_precip_high.nc -------------------------------------------------------------------------------- /reconstruction_prediction/results_depositsprecip/grids/182Ma_precip_low.nc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EarthByte/paleoclimate-reconstruction/HEAD/reconstruction_prediction/results_depositsprecip/grids/182Ma_precip_low.nc -------------------------------------------------------------------------------- /reconstruction_prediction/results_depositsprecip/grids/182Ma_precip_mean.nc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EarthByte/paleoclimate-reconstruction/HEAD/reconstruction_prediction/results_depositsprecip/grids/182Ma_precip_mean.nc -------------------------------------------------------------------------------- /reconstruction_prediction/results_depositsprecip/grids/219Ma_coal_actual.nc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EarthByte/paleoclimate-reconstruction/HEAD/reconstruction_prediction/results_depositsprecip/grids/219Ma_coal_actual.nc -------------------------------------------------------------------------------- /reconstruction_prediction/results_depositsprecip/grids/219Ma_coal_high.nc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EarthByte/paleoclimate-reconstruction/HEAD/reconstruction_prediction/results_depositsprecip/grids/219Ma_coal_high.nc -------------------------------------------------------------------------------- /reconstruction_prediction/results_depositsprecip/grids/219Ma_coal_low.nc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EarthByte/paleoclimate-reconstruction/HEAD/reconstruction_prediction/results_depositsprecip/grids/219Ma_coal_low.nc -------------------------------------------------------------------------------- /reconstruction_prediction/results_depositsprecip/grids/219Ma_coal_mean.nc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EarthByte/paleoclimate-reconstruction/HEAD/reconstruction_prediction/results_depositsprecip/grids/219Ma_coal_mean.nc -------------------------------------------------------------------------------- /reconstruction_prediction/results_depositsprecip/grids/219Ma_evap_actual.nc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EarthByte/paleoclimate-reconstruction/HEAD/reconstruction_prediction/results_depositsprecip/grids/219Ma_evap_actual.nc -------------------------------------------------------------------------------- /reconstruction_prediction/results_depositsprecip/grids/219Ma_evap_high.nc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EarthByte/paleoclimate-reconstruction/HEAD/reconstruction_prediction/results_depositsprecip/grids/219Ma_evap_high.nc -------------------------------------------------------------------------------- /reconstruction_prediction/results_depositsprecip/grids/219Ma_evap_low.nc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EarthByte/paleoclimate-reconstruction/HEAD/reconstruction_prediction/results_depositsprecip/grids/219Ma_evap_low.nc -------------------------------------------------------------------------------- /reconstruction_prediction/results_depositsprecip/grids/219Ma_evap_mean.nc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EarthByte/paleoclimate-reconstruction/HEAD/reconstruction_prediction/results_depositsprecip/grids/219Ma_evap_mean.nc -------------------------------------------------------------------------------- /reconstruction_prediction/results_depositsprecip/grids/219Ma_glacial_actual.nc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EarthByte/paleoclimate-reconstruction/HEAD/reconstruction_prediction/results_depositsprecip/grids/219Ma_glacial_actual.nc -------------------------------------------------------------------------------- /reconstruction_prediction/results_depositsprecip/grids/219Ma_glacial_high.nc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EarthByte/paleoclimate-reconstruction/HEAD/reconstruction_prediction/results_depositsprecip/grids/219Ma_glacial_high.nc -------------------------------------------------------------------------------- /reconstruction_prediction/results_depositsprecip/grids/219Ma_glacial_low.nc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EarthByte/paleoclimate-reconstruction/HEAD/reconstruction_prediction/results_depositsprecip/grids/219Ma_glacial_low.nc -------------------------------------------------------------------------------- /reconstruction_prediction/results_depositsprecip/grids/219Ma_glacial_mean.nc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EarthByte/paleoclimate-reconstruction/HEAD/reconstruction_prediction/results_depositsprecip/grids/219Ma_glacial_mean.nc -------------------------------------------------------------------------------- /reconstruction_prediction/results_depositsprecip/grids/219Ma_precip_high.nc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EarthByte/paleoclimate-reconstruction/HEAD/reconstruction_prediction/results_depositsprecip/grids/219Ma_precip_high.nc -------------------------------------------------------------------------------- /reconstruction_prediction/results_depositsprecip/grids/219Ma_precip_low.nc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EarthByte/paleoclimate-reconstruction/HEAD/reconstruction_prediction/results_depositsprecip/grids/219Ma_precip_low.nc -------------------------------------------------------------------------------- /reconstruction_prediction/results_depositsprecip/grids/219Ma_precip_mean.nc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EarthByte/paleoclimate-reconstruction/HEAD/reconstruction_prediction/results_depositsprecip/grids/219Ma_precip_mean.nc -------------------------------------------------------------------------------- /reconstruction_prediction/results_depositsprecip/grids/242Ma_coal_actual.nc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EarthByte/paleoclimate-reconstruction/HEAD/reconstruction_prediction/results_depositsprecip/grids/242Ma_coal_actual.nc -------------------------------------------------------------------------------- /reconstruction_prediction/results_depositsprecip/grids/242Ma_coal_high.nc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EarthByte/paleoclimate-reconstruction/HEAD/reconstruction_prediction/results_depositsprecip/grids/242Ma_coal_high.nc -------------------------------------------------------------------------------- /reconstruction_prediction/results_depositsprecip/grids/242Ma_coal_low.nc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EarthByte/paleoclimate-reconstruction/HEAD/reconstruction_prediction/results_depositsprecip/grids/242Ma_coal_low.nc -------------------------------------------------------------------------------- /reconstruction_prediction/results_depositsprecip/grids/242Ma_coal_mean.nc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EarthByte/paleoclimate-reconstruction/HEAD/reconstruction_prediction/results_depositsprecip/grids/242Ma_coal_mean.nc -------------------------------------------------------------------------------- /reconstruction_prediction/results_depositsprecip/grids/242Ma_evap_actual.nc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EarthByte/paleoclimate-reconstruction/HEAD/reconstruction_prediction/results_depositsprecip/grids/242Ma_evap_actual.nc -------------------------------------------------------------------------------- /reconstruction_prediction/results_depositsprecip/grids/242Ma_evap_high.nc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EarthByte/paleoclimate-reconstruction/HEAD/reconstruction_prediction/results_depositsprecip/grids/242Ma_evap_high.nc -------------------------------------------------------------------------------- /reconstruction_prediction/results_depositsprecip/grids/242Ma_evap_low.nc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EarthByte/paleoclimate-reconstruction/HEAD/reconstruction_prediction/results_depositsprecip/grids/242Ma_evap_low.nc -------------------------------------------------------------------------------- /reconstruction_prediction/results_depositsprecip/grids/242Ma_evap_mean.nc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EarthByte/paleoclimate-reconstruction/HEAD/reconstruction_prediction/results_depositsprecip/grids/242Ma_evap_mean.nc -------------------------------------------------------------------------------- /reconstruction_prediction/results_depositsprecip/grids/242Ma_glacial_actual.nc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EarthByte/paleoclimate-reconstruction/HEAD/reconstruction_prediction/results_depositsprecip/grids/242Ma_glacial_actual.nc -------------------------------------------------------------------------------- /reconstruction_prediction/results_depositsprecip/grids/242Ma_glacial_high.nc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EarthByte/paleoclimate-reconstruction/HEAD/reconstruction_prediction/results_depositsprecip/grids/242Ma_glacial_high.nc -------------------------------------------------------------------------------- /reconstruction_prediction/results_depositsprecip/grids/242Ma_glacial_low.nc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EarthByte/paleoclimate-reconstruction/HEAD/reconstruction_prediction/results_depositsprecip/grids/242Ma_glacial_low.nc -------------------------------------------------------------------------------- /reconstruction_prediction/results_depositsprecip/grids/242Ma_glacial_mean.nc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EarthByte/paleoclimate-reconstruction/HEAD/reconstruction_prediction/results_depositsprecip/grids/242Ma_glacial_mean.nc -------------------------------------------------------------------------------- /reconstruction_prediction/results_depositsprecip/grids/242Ma_precip_high.nc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EarthByte/paleoclimate-reconstruction/HEAD/reconstruction_prediction/results_depositsprecip/grids/242Ma_precip_high.nc -------------------------------------------------------------------------------- /reconstruction_prediction/results_depositsprecip/grids/242Ma_precip_low.nc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EarthByte/paleoclimate-reconstruction/HEAD/reconstruction_prediction/results_depositsprecip/grids/242Ma_precip_low.nc -------------------------------------------------------------------------------- /reconstruction_prediction/results_depositsprecip/grids/242Ma_precip_mean.nc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EarthByte/paleoclimate-reconstruction/HEAD/reconstruction_prediction/results_depositsprecip/grids/242Ma_precip_mean.nc -------------------------------------------------------------------------------- /reconstruction_prediction/results_depositsprecip/grids/249Ma_coal_actual.nc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EarthByte/paleoclimate-reconstruction/HEAD/reconstruction_prediction/results_depositsprecip/grids/249Ma_coal_actual.nc -------------------------------------------------------------------------------- /reconstruction_prediction/results_depositsprecip/grids/249Ma_coal_high.nc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EarthByte/paleoclimate-reconstruction/HEAD/reconstruction_prediction/results_depositsprecip/grids/249Ma_coal_high.nc -------------------------------------------------------------------------------- /reconstruction_prediction/results_depositsprecip/grids/249Ma_coal_low.nc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EarthByte/paleoclimate-reconstruction/HEAD/reconstruction_prediction/results_depositsprecip/grids/249Ma_coal_low.nc -------------------------------------------------------------------------------- /reconstruction_prediction/results_depositsprecip/grids/249Ma_coal_mean.nc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EarthByte/paleoclimate-reconstruction/HEAD/reconstruction_prediction/results_depositsprecip/grids/249Ma_coal_mean.nc -------------------------------------------------------------------------------- /reconstruction_prediction/results_depositsprecip/grids/249Ma_evap_actual.nc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EarthByte/paleoclimate-reconstruction/HEAD/reconstruction_prediction/results_depositsprecip/grids/249Ma_evap_actual.nc -------------------------------------------------------------------------------- /reconstruction_prediction/results_depositsprecip/grids/249Ma_evap_high.nc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EarthByte/paleoclimate-reconstruction/HEAD/reconstruction_prediction/results_depositsprecip/grids/249Ma_evap_high.nc -------------------------------------------------------------------------------- /reconstruction_prediction/results_depositsprecip/grids/249Ma_evap_low.nc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EarthByte/paleoclimate-reconstruction/HEAD/reconstruction_prediction/results_depositsprecip/grids/249Ma_evap_low.nc -------------------------------------------------------------------------------- /reconstruction_prediction/results_depositsprecip/grids/249Ma_evap_mean.nc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EarthByte/paleoclimate-reconstruction/HEAD/reconstruction_prediction/results_depositsprecip/grids/249Ma_evap_mean.nc -------------------------------------------------------------------------------- /reconstruction_prediction/results_depositsprecip/grids/249Ma_glacial_actual.nc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EarthByte/paleoclimate-reconstruction/HEAD/reconstruction_prediction/results_depositsprecip/grids/249Ma_glacial_actual.nc -------------------------------------------------------------------------------- /reconstruction_prediction/results_depositsprecip/grids/249Ma_glacial_high.nc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EarthByte/paleoclimate-reconstruction/HEAD/reconstruction_prediction/results_depositsprecip/grids/249Ma_glacial_high.nc -------------------------------------------------------------------------------- /reconstruction_prediction/results_depositsprecip/grids/249Ma_glacial_low.nc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EarthByte/paleoclimate-reconstruction/HEAD/reconstruction_prediction/results_depositsprecip/grids/249Ma_glacial_low.nc -------------------------------------------------------------------------------- /reconstruction_prediction/results_depositsprecip/grids/249Ma_glacial_mean.nc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EarthByte/paleoclimate-reconstruction/HEAD/reconstruction_prediction/results_depositsprecip/grids/249Ma_glacial_mean.nc -------------------------------------------------------------------------------- /reconstruction_prediction/results_depositsprecip/grids/249Ma_precip_high.nc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EarthByte/paleoclimate-reconstruction/HEAD/reconstruction_prediction/results_depositsprecip/grids/249Ma_precip_high.nc -------------------------------------------------------------------------------- /reconstruction_prediction/results_depositsprecip/grids/249Ma_precip_low.nc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EarthByte/paleoclimate-reconstruction/HEAD/reconstruction_prediction/results_depositsprecip/grids/249Ma_precip_low.nc -------------------------------------------------------------------------------- /reconstruction_prediction/results_depositsprecip/grids/249Ma_precip_mean.nc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EarthByte/paleoclimate-reconstruction/HEAD/reconstruction_prediction/results_depositsprecip/grids/249Ma_precip_mean.nc -------------------------------------------------------------------------------- /reconstruction_prediction/results_depositsprecip/grids/38Ma_coal_actual.nc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EarthByte/paleoclimate-reconstruction/HEAD/reconstruction_prediction/results_depositsprecip/grids/38Ma_coal_actual.nc -------------------------------------------------------------------------------- /reconstruction_prediction/results_depositsprecip/grids/38Ma_coal_high.nc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EarthByte/paleoclimate-reconstruction/HEAD/reconstruction_prediction/results_depositsprecip/grids/38Ma_coal_high.nc -------------------------------------------------------------------------------- /reconstruction_prediction/results_depositsprecip/grids/38Ma_coal_low.nc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EarthByte/paleoclimate-reconstruction/HEAD/reconstruction_prediction/results_depositsprecip/grids/38Ma_coal_low.nc -------------------------------------------------------------------------------- /reconstruction_prediction/results_depositsprecip/grids/38Ma_coal_mean.nc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EarthByte/paleoclimate-reconstruction/HEAD/reconstruction_prediction/results_depositsprecip/grids/38Ma_coal_mean.nc -------------------------------------------------------------------------------- /reconstruction_prediction/results_depositsprecip/grids/38Ma_evap_actual.nc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EarthByte/paleoclimate-reconstruction/HEAD/reconstruction_prediction/results_depositsprecip/grids/38Ma_evap_actual.nc -------------------------------------------------------------------------------- /reconstruction_prediction/results_depositsprecip/grids/38Ma_evap_high.nc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EarthByte/paleoclimate-reconstruction/HEAD/reconstruction_prediction/results_depositsprecip/grids/38Ma_evap_high.nc -------------------------------------------------------------------------------- /reconstruction_prediction/results_depositsprecip/grids/38Ma_evap_low.nc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EarthByte/paleoclimate-reconstruction/HEAD/reconstruction_prediction/results_depositsprecip/grids/38Ma_evap_low.nc -------------------------------------------------------------------------------- /reconstruction_prediction/results_depositsprecip/grids/38Ma_evap_mean.nc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EarthByte/paleoclimate-reconstruction/HEAD/reconstruction_prediction/results_depositsprecip/grids/38Ma_evap_mean.nc -------------------------------------------------------------------------------- /reconstruction_prediction/results_depositsprecip/grids/38Ma_glacial_actual.nc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EarthByte/paleoclimate-reconstruction/HEAD/reconstruction_prediction/results_depositsprecip/grids/38Ma_glacial_actual.nc -------------------------------------------------------------------------------- /reconstruction_prediction/results_depositsprecip/grids/38Ma_glacial_high.nc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EarthByte/paleoclimate-reconstruction/HEAD/reconstruction_prediction/results_depositsprecip/grids/38Ma_glacial_high.nc -------------------------------------------------------------------------------- /reconstruction_prediction/results_depositsprecip/grids/38Ma_glacial_low.nc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EarthByte/paleoclimate-reconstruction/HEAD/reconstruction_prediction/results_depositsprecip/grids/38Ma_glacial_low.nc -------------------------------------------------------------------------------- /reconstruction_prediction/results_depositsprecip/grids/38Ma_glacial_mean.nc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EarthByte/paleoclimate-reconstruction/HEAD/reconstruction_prediction/results_depositsprecip/grids/38Ma_glacial_mean.nc -------------------------------------------------------------------------------- /reconstruction_prediction/results_depositsprecip/grids/38Ma_precip_actual.nc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EarthByte/paleoclimate-reconstruction/HEAD/reconstruction_prediction/results_depositsprecip/grids/38Ma_precip_actual.nc -------------------------------------------------------------------------------- /reconstruction_prediction/results_depositsprecip/grids/38Ma_precip_high.nc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EarthByte/paleoclimate-reconstruction/HEAD/reconstruction_prediction/results_depositsprecip/grids/38Ma_precip_high.nc -------------------------------------------------------------------------------- /reconstruction_prediction/results_depositsprecip/grids/38Ma_precip_low.nc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EarthByte/paleoclimate-reconstruction/HEAD/reconstruction_prediction/results_depositsprecip/grids/38Ma_precip_low.nc -------------------------------------------------------------------------------- /reconstruction_prediction/results_depositsprecip/grids/38Ma_precip_mean.nc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EarthByte/paleoclimate-reconstruction/HEAD/reconstruction_prediction/results_depositsprecip/grids/38Ma_precip_mean.nc -------------------------------------------------------------------------------- /reconstruction_prediction/results_depositsprecip/grids/39Ma_coal_actual.nc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EarthByte/paleoclimate-reconstruction/HEAD/reconstruction_prediction/results_depositsprecip/grids/39Ma_coal_actual.nc -------------------------------------------------------------------------------- /reconstruction_prediction/results_depositsprecip/grids/39Ma_coal_high.nc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EarthByte/paleoclimate-reconstruction/HEAD/reconstruction_prediction/results_depositsprecip/grids/39Ma_coal_high.nc -------------------------------------------------------------------------------- /reconstruction_prediction/results_depositsprecip/grids/39Ma_coal_low.nc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EarthByte/paleoclimate-reconstruction/HEAD/reconstruction_prediction/results_depositsprecip/grids/39Ma_coal_low.nc -------------------------------------------------------------------------------- /reconstruction_prediction/results_depositsprecip/grids/39Ma_coal_mean.nc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EarthByte/paleoclimate-reconstruction/HEAD/reconstruction_prediction/results_depositsprecip/grids/39Ma_coal_mean.nc -------------------------------------------------------------------------------- /reconstruction_prediction/results_depositsprecip/grids/39Ma_evap_actual.nc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EarthByte/paleoclimate-reconstruction/HEAD/reconstruction_prediction/results_depositsprecip/grids/39Ma_evap_actual.nc -------------------------------------------------------------------------------- /reconstruction_prediction/results_depositsprecip/grids/39Ma_evap_high.nc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EarthByte/paleoclimate-reconstruction/HEAD/reconstruction_prediction/results_depositsprecip/grids/39Ma_evap_high.nc -------------------------------------------------------------------------------- /reconstruction_prediction/results_depositsprecip/grids/39Ma_evap_low.nc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EarthByte/paleoclimate-reconstruction/HEAD/reconstruction_prediction/results_depositsprecip/grids/39Ma_evap_low.nc -------------------------------------------------------------------------------- /reconstruction_prediction/results_depositsprecip/grids/39Ma_evap_mean.nc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EarthByte/paleoclimate-reconstruction/HEAD/reconstruction_prediction/results_depositsprecip/grids/39Ma_evap_mean.nc -------------------------------------------------------------------------------- /reconstruction_prediction/results_depositsprecip/grids/39Ma_glacial_actual.nc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EarthByte/paleoclimate-reconstruction/HEAD/reconstruction_prediction/results_depositsprecip/grids/39Ma_glacial_actual.nc -------------------------------------------------------------------------------- /reconstruction_prediction/results_depositsprecip/grids/39Ma_glacial_high.nc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EarthByte/paleoclimate-reconstruction/HEAD/reconstruction_prediction/results_depositsprecip/grids/39Ma_glacial_high.nc -------------------------------------------------------------------------------- /reconstruction_prediction/results_depositsprecip/grids/39Ma_glacial_low.nc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EarthByte/paleoclimate-reconstruction/HEAD/reconstruction_prediction/results_depositsprecip/grids/39Ma_glacial_low.nc -------------------------------------------------------------------------------- /reconstruction_prediction/results_depositsprecip/grids/39Ma_glacial_mean.nc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EarthByte/paleoclimate-reconstruction/HEAD/reconstruction_prediction/results_depositsprecip/grids/39Ma_glacial_mean.nc -------------------------------------------------------------------------------- /reconstruction_prediction/results_depositsprecip/grids/39Ma_precip_actual.nc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EarthByte/paleoclimate-reconstruction/HEAD/reconstruction_prediction/results_depositsprecip/grids/39Ma_precip_actual.nc -------------------------------------------------------------------------------- /reconstruction_prediction/results_depositsprecip/grids/39Ma_precip_high.nc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EarthByte/paleoclimate-reconstruction/HEAD/reconstruction_prediction/results_depositsprecip/grids/39Ma_precip_high.nc -------------------------------------------------------------------------------- /reconstruction_prediction/results_depositsprecip/grids/39Ma_precip_low.nc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EarthByte/paleoclimate-reconstruction/HEAD/reconstruction_prediction/results_depositsprecip/grids/39Ma_precip_low.nc -------------------------------------------------------------------------------- /reconstruction_prediction/results_depositsprecip/grids/39Ma_precip_mean.nc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EarthByte/paleoclimate-reconstruction/HEAD/reconstruction_prediction/results_depositsprecip/grids/39Ma_precip_mean.nc -------------------------------------------------------------------------------- /reconstruction_prediction/results_depositsprecip/grids/40Ma_coal_actual.nc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EarthByte/paleoclimate-reconstruction/HEAD/reconstruction_prediction/results_depositsprecip/grids/40Ma_coal_actual.nc -------------------------------------------------------------------------------- /reconstruction_prediction/results_depositsprecip/grids/40Ma_coal_high.nc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EarthByte/paleoclimate-reconstruction/HEAD/reconstruction_prediction/results_depositsprecip/grids/40Ma_coal_high.nc -------------------------------------------------------------------------------- /reconstruction_prediction/results_depositsprecip/grids/40Ma_coal_low.nc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EarthByte/paleoclimate-reconstruction/HEAD/reconstruction_prediction/results_depositsprecip/grids/40Ma_coal_low.nc -------------------------------------------------------------------------------- /reconstruction_prediction/results_depositsprecip/grids/40Ma_coal_mean.nc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EarthByte/paleoclimate-reconstruction/HEAD/reconstruction_prediction/results_depositsprecip/grids/40Ma_coal_mean.nc -------------------------------------------------------------------------------- /reconstruction_prediction/results_depositsprecip/grids/40Ma_evap_actual.nc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EarthByte/paleoclimate-reconstruction/HEAD/reconstruction_prediction/results_depositsprecip/grids/40Ma_evap_actual.nc -------------------------------------------------------------------------------- /reconstruction_prediction/results_depositsprecip/grids/40Ma_evap_high.nc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EarthByte/paleoclimate-reconstruction/HEAD/reconstruction_prediction/results_depositsprecip/grids/40Ma_evap_high.nc -------------------------------------------------------------------------------- /reconstruction_prediction/results_depositsprecip/grids/40Ma_evap_low.nc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EarthByte/paleoclimate-reconstruction/HEAD/reconstruction_prediction/results_depositsprecip/grids/40Ma_evap_low.nc -------------------------------------------------------------------------------- /reconstruction_prediction/results_depositsprecip/grids/40Ma_evap_mean.nc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EarthByte/paleoclimate-reconstruction/HEAD/reconstruction_prediction/results_depositsprecip/grids/40Ma_evap_mean.nc -------------------------------------------------------------------------------- /reconstruction_prediction/results_depositsprecip/grids/40Ma_glacial_actual.nc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EarthByte/paleoclimate-reconstruction/HEAD/reconstruction_prediction/results_depositsprecip/grids/40Ma_glacial_actual.nc -------------------------------------------------------------------------------- /reconstruction_prediction/results_depositsprecip/grids/40Ma_glacial_high.nc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EarthByte/paleoclimate-reconstruction/HEAD/reconstruction_prediction/results_depositsprecip/grids/40Ma_glacial_high.nc -------------------------------------------------------------------------------- /reconstruction_prediction/results_depositsprecip/grids/40Ma_glacial_low.nc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EarthByte/paleoclimate-reconstruction/HEAD/reconstruction_prediction/results_depositsprecip/grids/40Ma_glacial_low.nc -------------------------------------------------------------------------------- /reconstruction_prediction/results_depositsprecip/grids/40Ma_glacial_mean.nc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EarthByte/paleoclimate-reconstruction/HEAD/reconstruction_prediction/results_depositsprecip/grids/40Ma_glacial_mean.nc -------------------------------------------------------------------------------- /reconstruction_prediction/results_depositsprecip/grids/40Ma_precip_high.nc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EarthByte/paleoclimate-reconstruction/HEAD/reconstruction_prediction/results_depositsprecip/grids/40Ma_precip_high.nc -------------------------------------------------------------------------------- /reconstruction_prediction/results_depositsprecip/grids/40Ma_precip_low.nc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EarthByte/paleoclimate-reconstruction/HEAD/reconstruction_prediction/results_depositsprecip/grids/40Ma_precip_low.nc -------------------------------------------------------------------------------- /reconstruction_prediction/results_depositsprecip/grids/40Ma_precip_mean.nc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EarthByte/paleoclimate-reconstruction/HEAD/reconstruction_prediction/results_depositsprecip/grids/40Ma_precip_mean.nc -------------------------------------------------------------------------------- /reconstruction_prediction/results_depositsprecip/grids/51Ma_coal_actual.nc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EarthByte/paleoclimate-reconstruction/HEAD/reconstruction_prediction/results_depositsprecip/grids/51Ma_coal_actual.nc -------------------------------------------------------------------------------- /reconstruction_prediction/results_depositsprecip/grids/51Ma_coal_high.nc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EarthByte/paleoclimate-reconstruction/HEAD/reconstruction_prediction/results_depositsprecip/grids/51Ma_coal_high.nc -------------------------------------------------------------------------------- /reconstruction_prediction/results_depositsprecip/grids/51Ma_coal_low.nc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EarthByte/paleoclimate-reconstruction/HEAD/reconstruction_prediction/results_depositsprecip/grids/51Ma_coal_low.nc -------------------------------------------------------------------------------- /reconstruction_prediction/results_depositsprecip/grids/51Ma_coal_mean.nc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EarthByte/paleoclimate-reconstruction/HEAD/reconstruction_prediction/results_depositsprecip/grids/51Ma_coal_mean.nc -------------------------------------------------------------------------------- /reconstruction_prediction/results_depositsprecip/grids/51Ma_evap_actual.nc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EarthByte/paleoclimate-reconstruction/HEAD/reconstruction_prediction/results_depositsprecip/grids/51Ma_evap_actual.nc -------------------------------------------------------------------------------- /reconstruction_prediction/results_depositsprecip/grids/51Ma_evap_high.nc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EarthByte/paleoclimate-reconstruction/HEAD/reconstruction_prediction/results_depositsprecip/grids/51Ma_evap_high.nc -------------------------------------------------------------------------------- /reconstruction_prediction/results_depositsprecip/grids/51Ma_evap_low.nc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EarthByte/paleoclimate-reconstruction/HEAD/reconstruction_prediction/results_depositsprecip/grids/51Ma_evap_low.nc -------------------------------------------------------------------------------- /reconstruction_prediction/results_depositsprecip/grids/51Ma_evap_mean.nc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EarthByte/paleoclimate-reconstruction/HEAD/reconstruction_prediction/results_depositsprecip/grids/51Ma_evap_mean.nc -------------------------------------------------------------------------------- /reconstruction_prediction/results_depositsprecip/grids/51Ma_glacial_actual.nc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EarthByte/paleoclimate-reconstruction/HEAD/reconstruction_prediction/results_depositsprecip/grids/51Ma_glacial_actual.nc -------------------------------------------------------------------------------- /reconstruction_prediction/results_depositsprecip/grids/51Ma_glacial_high.nc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EarthByte/paleoclimate-reconstruction/HEAD/reconstruction_prediction/results_depositsprecip/grids/51Ma_glacial_high.nc -------------------------------------------------------------------------------- /reconstruction_prediction/results_depositsprecip/grids/51Ma_glacial_low.nc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EarthByte/paleoclimate-reconstruction/HEAD/reconstruction_prediction/results_depositsprecip/grids/51Ma_glacial_low.nc -------------------------------------------------------------------------------- /reconstruction_prediction/results_depositsprecip/grids/51Ma_glacial_mean.nc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EarthByte/paleoclimate-reconstruction/HEAD/reconstruction_prediction/results_depositsprecip/grids/51Ma_glacial_mean.nc -------------------------------------------------------------------------------- /reconstruction_prediction/results_depositsprecip/grids/51Ma_precip_high.nc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EarthByte/paleoclimate-reconstruction/HEAD/reconstruction_prediction/results_depositsprecip/grids/51Ma_precip_high.nc -------------------------------------------------------------------------------- /reconstruction_prediction/results_depositsprecip/grids/51Ma_precip_low.nc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EarthByte/paleoclimate-reconstruction/HEAD/reconstruction_prediction/results_depositsprecip/grids/51Ma_precip_low.nc -------------------------------------------------------------------------------- /reconstruction_prediction/results_depositsprecip/grids/51Ma_precip_mean.nc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EarthByte/paleoclimate-reconstruction/HEAD/reconstruction_prediction/results_depositsprecip/grids/51Ma_precip_mean.nc -------------------------------------------------------------------------------- /reconstruction_prediction/results_depositsprecip/grids/61Ma_coal_actual.nc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EarthByte/paleoclimate-reconstruction/HEAD/reconstruction_prediction/results_depositsprecip/grids/61Ma_coal_actual.nc -------------------------------------------------------------------------------- /reconstruction_prediction/results_depositsprecip/grids/61Ma_coal_high.nc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EarthByte/paleoclimate-reconstruction/HEAD/reconstruction_prediction/results_depositsprecip/grids/61Ma_coal_high.nc -------------------------------------------------------------------------------- /reconstruction_prediction/results_depositsprecip/grids/61Ma_coal_low.nc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EarthByte/paleoclimate-reconstruction/HEAD/reconstruction_prediction/results_depositsprecip/grids/61Ma_coal_low.nc -------------------------------------------------------------------------------- /reconstruction_prediction/results_depositsprecip/grids/61Ma_coal_mean.nc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EarthByte/paleoclimate-reconstruction/HEAD/reconstruction_prediction/results_depositsprecip/grids/61Ma_coal_mean.nc -------------------------------------------------------------------------------- /reconstruction_prediction/results_depositsprecip/grids/61Ma_evap_actual.nc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EarthByte/paleoclimate-reconstruction/HEAD/reconstruction_prediction/results_depositsprecip/grids/61Ma_evap_actual.nc -------------------------------------------------------------------------------- /reconstruction_prediction/results_depositsprecip/grids/61Ma_evap_high.nc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EarthByte/paleoclimate-reconstruction/HEAD/reconstruction_prediction/results_depositsprecip/grids/61Ma_evap_high.nc -------------------------------------------------------------------------------- /reconstruction_prediction/results_depositsprecip/grids/61Ma_evap_low.nc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EarthByte/paleoclimate-reconstruction/HEAD/reconstruction_prediction/results_depositsprecip/grids/61Ma_evap_low.nc -------------------------------------------------------------------------------- /reconstruction_prediction/results_depositsprecip/grids/61Ma_evap_mean.nc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EarthByte/paleoclimate-reconstruction/HEAD/reconstruction_prediction/results_depositsprecip/grids/61Ma_evap_mean.nc -------------------------------------------------------------------------------- /reconstruction_prediction/results_depositsprecip/grids/61Ma_glacial_actual.nc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EarthByte/paleoclimate-reconstruction/HEAD/reconstruction_prediction/results_depositsprecip/grids/61Ma_glacial_actual.nc -------------------------------------------------------------------------------- /reconstruction_prediction/results_depositsprecip/grids/61Ma_glacial_high.nc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EarthByte/paleoclimate-reconstruction/HEAD/reconstruction_prediction/results_depositsprecip/grids/61Ma_glacial_high.nc -------------------------------------------------------------------------------- /reconstruction_prediction/results_depositsprecip/grids/61Ma_glacial_low.nc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EarthByte/paleoclimate-reconstruction/HEAD/reconstruction_prediction/results_depositsprecip/grids/61Ma_glacial_low.nc -------------------------------------------------------------------------------- /reconstruction_prediction/results_depositsprecip/grids/61Ma_glacial_mean.nc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EarthByte/paleoclimate-reconstruction/HEAD/reconstruction_prediction/results_depositsprecip/grids/61Ma_glacial_mean.nc -------------------------------------------------------------------------------- /reconstruction_prediction/results_depositsprecip/grids/61Ma_precip_high.nc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EarthByte/paleoclimate-reconstruction/HEAD/reconstruction_prediction/results_depositsprecip/grids/61Ma_precip_high.nc -------------------------------------------------------------------------------- /reconstruction_prediction/results_depositsprecip/grids/61Ma_precip_low.nc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EarthByte/paleoclimate-reconstruction/HEAD/reconstruction_prediction/results_depositsprecip/grids/61Ma_precip_low.nc -------------------------------------------------------------------------------- /reconstruction_prediction/results_depositsprecip/grids/61Ma_precip_mean.nc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EarthByte/paleoclimate-reconstruction/HEAD/reconstruction_prediction/results_depositsprecip/grids/61Ma_precip_mean.nc -------------------------------------------------------------------------------- /reconstruction_prediction/results_depositsprecip/grids/77Ma_coal_actual.nc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EarthByte/paleoclimate-reconstruction/HEAD/reconstruction_prediction/results_depositsprecip/grids/77Ma_coal_actual.nc -------------------------------------------------------------------------------- /reconstruction_prediction/results_depositsprecip/grids/77Ma_coal_high.nc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EarthByte/paleoclimate-reconstruction/HEAD/reconstruction_prediction/results_depositsprecip/grids/77Ma_coal_high.nc -------------------------------------------------------------------------------- /reconstruction_prediction/results_depositsprecip/grids/77Ma_coal_low.nc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EarthByte/paleoclimate-reconstruction/HEAD/reconstruction_prediction/results_depositsprecip/grids/77Ma_coal_low.nc -------------------------------------------------------------------------------- /reconstruction_prediction/results_depositsprecip/grids/77Ma_coal_mean.nc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EarthByte/paleoclimate-reconstruction/HEAD/reconstruction_prediction/results_depositsprecip/grids/77Ma_coal_mean.nc -------------------------------------------------------------------------------- /reconstruction_prediction/results_depositsprecip/grids/77Ma_evap_actual.nc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EarthByte/paleoclimate-reconstruction/HEAD/reconstruction_prediction/results_depositsprecip/grids/77Ma_evap_actual.nc -------------------------------------------------------------------------------- /reconstruction_prediction/results_depositsprecip/grids/77Ma_evap_high.nc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EarthByte/paleoclimate-reconstruction/HEAD/reconstruction_prediction/results_depositsprecip/grids/77Ma_evap_high.nc -------------------------------------------------------------------------------- /reconstruction_prediction/results_depositsprecip/grids/77Ma_evap_low.nc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EarthByte/paleoclimate-reconstruction/HEAD/reconstruction_prediction/results_depositsprecip/grids/77Ma_evap_low.nc -------------------------------------------------------------------------------- /reconstruction_prediction/results_depositsprecip/grids/77Ma_evap_mean.nc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EarthByte/paleoclimate-reconstruction/HEAD/reconstruction_prediction/results_depositsprecip/grids/77Ma_evap_mean.nc -------------------------------------------------------------------------------- /reconstruction_prediction/results_depositsprecip/grids/77Ma_glacial_actual.nc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EarthByte/paleoclimate-reconstruction/HEAD/reconstruction_prediction/results_depositsprecip/grids/77Ma_glacial_actual.nc -------------------------------------------------------------------------------- /reconstruction_prediction/results_depositsprecip/grids/77Ma_glacial_high.nc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EarthByte/paleoclimate-reconstruction/HEAD/reconstruction_prediction/results_depositsprecip/grids/77Ma_glacial_high.nc -------------------------------------------------------------------------------- /reconstruction_prediction/results_depositsprecip/grids/77Ma_glacial_low.nc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EarthByte/paleoclimate-reconstruction/HEAD/reconstruction_prediction/results_depositsprecip/grids/77Ma_glacial_low.nc -------------------------------------------------------------------------------- /reconstruction_prediction/results_depositsprecip/grids/77Ma_glacial_mean.nc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EarthByte/paleoclimate-reconstruction/HEAD/reconstruction_prediction/results_depositsprecip/grids/77Ma_glacial_mean.nc -------------------------------------------------------------------------------- /reconstruction_prediction/results_depositsprecip/grids/77Ma_precip_high.nc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EarthByte/paleoclimate-reconstruction/HEAD/reconstruction_prediction/results_depositsprecip/grids/77Ma_precip_high.nc -------------------------------------------------------------------------------- /reconstruction_prediction/results_depositsprecip/grids/77Ma_precip_low.nc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EarthByte/paleoclimate-reconstruction/HEAD/reconstruction_prediction/results_depositsprecip/grids/77Ma_precip_low.nc -------------------------------------------------------------------------------- /reconstruction_prediction/results_depositsprecip/grids/77Ma_precip_mean.nc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EarthByte/paleoclimate-reconstruction/HEAD/reconstruction_prediction/results_depositsprecip/grids/77Ma_precip_mean.nc -------------------------------------------------------------------------------- /reconstruction_prediction/results_depositsprecip/grids/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EarthByte/paleoclimate-reconstruction/HEAD/reconstruction_prediction/results_depositsprecip/grids/README.md -------------------------------------------------------------------------------- /reconstruction_prediction/results_depositsprecip/grids/Untitled.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EarthByte/paleoclimate-reconstruction/HEAD/reconstruction_prediction/results_depositsprecip/grids/Untitled.ipynb -------------------------------------------------------------------------------- /reconstruction_prediction/results_depositsprecip/grids/gmt.history: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EarthByte/paleoclimate-reconstruction/HEAD/reconstruction_prediction/results_depositsprecip/grids/gmt.history -------------------------------------------------------------------------------- /reconstruction_prediction/results_depositsprecip/grids/params.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EarthByte/paleoclimate-reconstruction/HEAD/reconstruction_prediction/results_depositsprecip/grids/params.txt -------------------------------------------------------------------------------- /reconstruction_prediction/results_depositsprecip/precitmap/map_actual/predictionera14results.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EarthByte/paleoclimate-reconstruction/HEAD/reconstruction_prediction/results_depositsprecip/precitmap/map_actual/predictionera14results.pdf -------------------------------------------------------------------------------- /reconstruction_prediction/results_depositsprecip/precitmap/map_actual/predictionera38results.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EarthByte/paleoclimate-reconstruction/HEAD/reconstruction_prediction/results_depositsprecip/precitmap/map_actual/predictionera38results.pdf -------------------------------------------------------------------------------- /reconstruction_prediction/results_depositsprecip/precitmap/map_actual/predictionera39results.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EarthByte/paleoclimate-reconstruction/HEAD/reconstruction_prediction/results_depositsprecip/precitmap/map_actual/predictionera39results.pdf -------------------------------------------------------------------------------- /reconstruction_prediction/results_depositsprecip/precitmap/map_actual/predictionera40results.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EarthByte/paleoclimate-reconstruction/HEAD/reconstruction_prediction/results_depositsprecip/precitmap/map_actual/predictionera40results.pdf -------------------------------------------------------------------------------- /reconstruction_prediction/results_depositsprecip/precitmap/map_prediction/predictionera101results.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EarthByte/paleoclimate-reconstruction/HEAD/reconstruction_prediction/results_depositsprecip/precitmap/map_prediction/predictionera101results.pdf -------------------------------------------------------------------------------- /reconstruction_prediction/results_depositsprecip/precitmap/map_prediction/predictionera129results.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EarthByte/paleoclimate-reconstruction/HEAD/reconstruction_prediction/results_depositsprecip/precitmap/map_prediction/predictionera129results.pdf -------------------------------------------------------------------------------- /reconstruction_prediction/results_depositsprecip/precitmap/map_prediction/predictionera14results.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EarthByte/paleoclimate-reconstruction/HEAD/reconstruction_prediction/results_depositsprecip/precitmap/map_prediction/predictionera14results.pdf -------------------------------------------------------------------------------- /reconstruction_prediction/results_depositsprecip/precitmap/map_prediction/predictionera154results.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EarthByte/paleoclimate-reconstruction/HEAD/reconstruction_prediction/results_depositsprecip/precitmap/map_prediction/predictionera154results.pdf -------------------------------------------------------------------------------- /reconstruction_prediction/results_depositsprecip/precitmap/map_prediction/predictionera182results.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EarthByte/paleoclimate-reconstruction/HEAD/reconstruction_prediction/results_depositsprecip/precitmap/map_prediction/predictionera182results.pdf -------------------------------------------------------------------------------- /reconstruction_prediction/results_depositsprecip/precitmap/map_prediction/predictionera219results.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EarthByte/paleoclimate-reconstruction/HEAD/reconstruction_prediction/results_depositsprecip/precitmap/map_prediction/predictionera219results.pdf -------------------------------------------------------------------------------- /reconstruction_prediction/results_depositsprecip/precitmap/map_prediction/predictionera242results.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EarthByte/paleoclimate-reconstruction/HEAD/reconstruction_prediction/results_depositsprecip/precitmap/map_prediction/predictionera242results.pdf -------------------------------------------------------------------------------- /reconstruction_prediction/results_depositsprecip/precitmap/map_prediction/predictionera249results.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EarthByte/paleoclimate-reconstruction/HEAD/reconstruction_prediction/results_depositsprecip/precitmap/map_prediction/predictionera249results.pdf -------------------------------------------------------------------------------- /reconstruction_prediction/results_depositsprecip/precitmap/map_prediction/predictionera38results.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EarthByte/paleoclimate-reconstruction/HEAD/reconstruction_prediction/results_depositsprecip/precitmap/map_prediction/predictionera38results.pdf -------------------------------------------------------------------------------- /reconstruction_prediction/results_depositsprecip/precitmap/map_prediction/predictionera40results.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EarthByte/paleoclimate-reconstruction/HEAD/reconstruction_prediction/results_depositsprecip/precitmap/map_prediction/predictionera40results.pdf -------------------------------------------------------------------------------- /reconstruction_prediction/results_depositsprecip/precitmap/map_prediction/predictionera51results.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EarthByte/paleoclimate-reconstruction/HEAD/reconstruction_prediction/results_depositsprecip/precitmap/map_prediction/predictionera51results.pdf -------------------------------------------------------------------------------- /reconstruction_prediction/results_depositsprecip/precitmap/map_prediction/predictionera61results.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EarthByte/paleoclimate-reconstruction/HEAD/reconstruction_prediction/results_depositsprecip/precitmap/map_prediction/predictionera61results.pdf -------------------------------------------------------------------------------- /reconstruction_prediction/results_depositsprecip/precitmap/map_prediction/predictionera77results.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EarthByte/paleoclimate-reconstruction/HEAD/reconstruction_prediction/results_depositsprecip/precitmap/map_prediction/predictionera77results.pdf -------------------------------------------------------------------------------- /reconstruction_prediction/results_depositsprecip/precitmap/map_prediction_uncert/predictionera101results.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EarthByte/paleoclimate-reconstruction/HEAD/reconstruction_prediction/results_depositsprecip/precitmap/map_prediction_uncert/predictionera101results.pdf -------------------------------------------------------------------------------- /reconstruction_prediction/results_depositsprecip/precitmap/map_prediction_uncert/predictionera129results.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EarthByte/paleoclimate-reconstruction/HEAD/reconstruction_prediction/results_depositsprecip/precitmap/map_prediction_uncert/predictionera129results.pdf -------------------------------------------------------------------------------- /reconstruction_prediction/results_depositsprecip/precitmap/map_prediction_uncert/predictionera14results.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EarthByte/paleoclimate-reconstruction/HEAD/reconstruction_prediction/results_depositsprecip/precitmap/map_prediction_uncert/predictionera14results.pdf -------------------------------------------------------------------------------- /reconstruction_prediction/results_depositsprecip/precitmap/map_prediction_uncert/predictionera154results.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EarthByte/paleoclimate-reconstruction/HEAD/reconstruction_prediction/results_depositsprecip/precitmap/map_prediction_uncert/predictionera154results.pdf -------------------------------------------------------------------------------- /reconstruction_prediction/results_depositsprecip/precitmap/map_prediction_uncert/predictionera182results.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EarthByte/paleoclimate-reconstruction/HEAD/reconstruction_prediction/results_depositsprecip/precitmap/map_prediction_uncert/predictionera182results.pdf -------------------------------------------------------------------------------- /reconstruction_prediction/results_depositsprecip/precitmap/map_prediction_uncert/predictionera219results.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EarthByte/paleoclimate-reconstruction/HEAD/reconstruction_prediction/results_depositsprecip/precitmap/map_prediction_uncert/predictionera219results.pdf -------------------------------------------------------------------------------- /reconstruction_prediction/results_depositsprecip/precitmap/map_prediction_uncert/predictionera242results.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EarthByte/paleoclimate-reconstruction/HEAD/reconstruction_prediction/results_depositsprecip/precitmap/map_prediction_uncert/predictionera242results.pdf -------------------------------------------------------------------------------- /reconstruction_prediction/results_depositsprecip/precitmap/map_prediction_uncert/predictionera249results.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EarthByte/paleoclimate-reconstruction/HEAD/reconstruction_prediction/results_depositsprecip/precitmap/map_prediction_uncert/predictionera249results.pdf -------------------------------------------------------------------------------- /reconstruction_prediction/results_depositsprecip/precitmap/map_prediction_uncert/predictionera38results.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EarthByte/paleoclimate-reconstruction/HEAD/reconstruction_prediction/results_depositsprecip/precitmap/map_prediction_uncert/predictionera38results.pdf -------------------------------------------------------------------------------- /reconstruction_prediction/results_depositsprecip/precitmap/map_prediction_uncert/predictionera40results.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EarthByte/paleoclimate-reconstruction/HEAD/reconstruction_prediction/results_depositsprecip/precitmap/map_prediction_uncert/predictionera40results.pdf -------------------------------------------------------------------------------- /reconstruction_prediction/results_depositsprecip/precitmap/map_prediction_uncert/predictionera51results.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EarthByte/paleoclimate-reconstruction/HEAD/reconstruction_prediction/results_depositsprecip/precitmap/map_prediction_uncert/predictionera51results.pdf -------------------------------------------------------------------------------- /reconstruction_prediction/results_depositsprecip/precitmap/map_prediction_uncert/predictionera61results.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EarthByte/paleoclimate-reconstruction/HEAD/reconstruction_prediction/results_depositsprecip/precitmap/map_prediction_uncert/predictionera61results.pdf -------------------------------------------------------------------------------- /reconstruction_prediction/results_depositsprecip/precitmap/map_prediction_uncert/predictionera77results.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EarthByte/paleoclimate-reconstruction/HEAD/reconstruction_prediction/results_depositsprecip/precitmap/map_prediction_uncert/predictionera77results.pdf -------------------------------------------------------------------------------- /reconstruction_prediction/results_depositsprecip/precitmap/plot_graph/predictionera101results.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EarthByte/paleoclimate-reconstruction/HEAD/reconstruction_prediction/results_depositsprecip/precitmap/plot_graph/predictionera101results.pdf -------------------------------------------------------------------------------- /reconstruction_prediction/results_depositsprecip/precitmap/plot_graph/predictionera129results.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EarthByte/paleoclimate-reconstruction/HEAD/reconstruction_prediction/results_depositsprecip/precitmap/plot_graph/predictionera129results.pdf -------------------------------------------------------------------------------- /reconstruction_prediction/results_depositsprecip/precitmap/plot_graph/predictionera14results.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EarthByte/paleoclimate-reconstruction/HEAD/reconstruction_prediction/results_depositsprecip/precitmap/plot_graph/predictionera14results.pdf -------------------------------------------------------------------------------- /reconstruction_prediction/results_depositsprecip/precitmap/plot_graph/predictionera154results.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EarthByte/paleoclimate-reconstruction/HEAD/reconstruction_prediction/results_depositsprecip/precitmap/plot_graph/predictionera154results.pdf -------------------------------------------------------------------------------- /reconstruction_prediction/results_depositsprecip/precitmap/plot_graph/predictionera182results.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EarthByte/paleoclimate-reconstruction/HEAD/reconstruction_prediction/results_depositsprecip/precitmap/plot_graph/predictionera182results.pdf -------------------------------------------------------------------------------- /reconstruction_prediction/results_depositsprecip/precitmap/plot_graph/predictionera219results.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EarthByte/paleoclimate-reconstruction/HEAD/reconstruction_prediction/results_depositsprecip/precitmap/plot_graph/predictionera219results.pdf -------------------------------------------------------------------------------- /reconstruction_prediction/results_depositsprecip/precitmap/plot_graph/predictionera242results.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EarthByte/paleoclimate-reconstruction/HEAD/reconstruction_prediction/results_depositsprecip/precitmap/plot_graph/predictionera242results.pdf -------------------------------------------------------------------------------- /reconstruction_prediction/results_depositsprecip/precitmap/plot_graph/predictionera249results.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EarthByte/paleoclimate-reconstruction/HEAD/reconstruction_prediction/results_depositsprecip/precitmap/plot_graph/predictionera249results.pdf -------------------------------------------------------------------------------- /reconstruction_prediction/results_depositsprecip/precitmap/plot_graph/predictionera38results.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EarthByte/paleoclimate-reconstruction/HEAD/reconstruction_prediction/results_depositsprecip/precitmap/plot_graph/predictionera38results.pdf -------------------------------------------------------------------------------- /reconstruction_prediction/results_depositsprecip/precitmap/plot_graph/predictionera40results.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EarthByte/paleoclimate-reconstruction/HEAD/reconstruction_prediction/results_depositsprecip/precitmap/plot_graph/predictionera40results.pdf -------------------------------------------------------------------------------- /reconstruction_prediction/results_depositsprecip/precitmap/plot_graph/predictionera51results.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EarthByte/paleoclimate-reconstruction/HEAD/reconstruction_prediction/results_depositsprecip/precitmap/plot_graph/predictionera51results.pdf -------------------------------------------------------------------------------- /reconstruction_prediction/results_depositsprecip/precitmap/plot_graph/predictionera61results.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EarthByte/paleoclimate-reconstruction/HEAD/reconstruction_prediction/results_depositsprecip/precitmap/plot_graph/predictionera61results.pdf -------------------------------------------------------------------------------- /reconstruction_prediction/results_depositsprecip/precitmap/plot_graph/predictionera77results.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EarthByte/paleoclimate-reconstruction/HEAD/reconstruction_prediction/results_depositsprecip/precitmap/plot_graph/predictionera77results.pdf -------------------------------------------------------------------------------- /reconstruction_prediction/results_depositsprecip/precitmap/snapshot_plot/predictionera101results_.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EarthByte/paleoclimate-reconstruction/HEAD/reconstruction_prediction/results_depositsprecip/precitmap/snapshot_plot/predictionera101results_.pdf -------------------------------------------------------------------------------- /reconstruction_prediction/results_depositsprecip/precitmap/snapshot_plot/predictionera129results_.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EarthByte/paleoclimate-reconstruction/HEAD/reconstruction_prediction/results_depositsprecip/precitmap/snapshot_plot/predictionera129results_.pdf -------------------------------------------------------------------------------- /reconstruction_prediction/results_depositsprecip/precitmap/snapshot_plot/predictionera14results.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EarthByte/paleoclimate-reconstruction/HEAD/reconstruction_prediction/results_depositsprecip/precitmap/snapshot_plot/predictionera14results.pdf -------------------------------------------------------------------------------- /reconstruction_prediction/results_depositsprecip/precitmap/snapshot_plot/predictionera14results_.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EarthByte/paleoclimate-reconstruction/HEAD/reconstruction_prediction/results_depositsprecip/precitmap/snapshot_plot/predictionera14results_.pdf -------------------------------------------------------------------------------- /reconstruction_prediction/results_depositsprecip/precitmap/snapshot_plot/predictionera14results_sns_diff.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EarthByte/paleoclimate-reconstruction/HEAD/reconstruction_prediction/results_depositsprecip/precitmap/snapshot_plot/predictionera14results_sns_diff.pdf -------------------------------------------------------------------------------- /reconstruction_prediction/results_depositsprecip/precitmap/snapshot_plot/predictionera14resultsmiocenepred.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EarthByte/paleoclimate-reconstruction/HEAD/reconstruction_prediction/results_depositsprecip/precitmap/snapshot_plot/predictionera14resultsmiocenepred.csv -------------------------------------------------------------------------------- /reconstruction_prediction/results_depositsprecip/precitmap/snapshot_plot/predictionera14resultsmiocenepred.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EarthByte/paleoclimate-reconstruction/HEAD/reconstruction_prediction/results_depositsprecip/precitmap/snapshot_plot/predictionera14resultsmiocenepred.txt -------------------------------------------------------------------------------- /reconstruction_prediction/results_depositsprecip/precitmap/snapshot_plot/predictionera154results_.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EarthByte/paleoclimate-reconstruction/HEAD/reconstruction_prediction/results_depositsprecip/precitmap/snapshot_plot/predictionera154results_.pdf -------------------------------------------------------------------------------- /reconstruction_prediction/results_depositsprecip/precitmap/snapshot_plot/predictionera182results_.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EarthByte/paleoclimate-reconstruction/HEAD/reconstruction_prediction/results_depositsprecip/precitmap/snapshot_plot/predictionera182results_.pdf -------------------------------------------------------------------------------- /reconstruction_prediction/results_depositsprecip/precitmap/snapshot_plot/predictionera219results_.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EarthByte/paleoclimate-reconstruction/HEAD/reconstruction_prediction/results_depositsprecip/precitmap/snapshot_plot/predictionera219results_.pdf -------------------------------------------------------------------------------- /reconstruction_prediction/results_depositsprecip/precitmap/snapshot_plot/predictionera242results_.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EarthByte/paleoclimate-reconstruction/HEAD/reconstruction_prediction/results_depositsprecip/precitmap/snapshot_plot/predictionera242results_.pdf -------------------------------------------------------------------------------- /reconstruction_prediction/results_depositsprecip/precitmap/snapshot_plot/predictionera249results_.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EarthByte/paleoclimate-reconstruction/HEAD/reconstruction_prediction/results_depositsprecip/precitmap/snapshot_plot/predictionera249results_.pdf -------------------------------------------------------------------------------- /reconstruction_prediction/results_depositsprecip/precitmap/snapshot_plot/predictionera38results.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EarthByte/paleoclimate-reconstruction/HEAD/reconstruction_prediction/results_depositsprecip/precitmap/snapshot_plot/predictionera38results.pdf -------------------------------------------------------------------------------- /reconstruction_prediction/results_depositsprecip/precitmap/snapshot_plot/predictionera38results_.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EarthByte/paleoclimate-reconstruction/HEAD/reconstruction_prediction/results_depositsprecip/precitmap/snapshot_plot/predictionera38results_.pdf -------------------------------------------------------------------------------- /reconstruction_prediction/results_depositsprecip/precitmap/snapshot_plot/predictionera38results_sns_diff.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EarthByte/paleoclimate-reconstruction/HEAD/reconstruction_prediction/results_depositsprecip/precitmap/snapshot_plot/predictionera38results_sns_diff.pdf -------------------------------------------------------------------------------- /reconstruction_prediction/results_depositsprecip/precitmap/snapshot_plot/predictionera40results_.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EarthByte/paleoclimate-reconstruction/HEAD/reconstruction_prediction/results_depositsprecip/precitmap/snapshot_plot/predictionera40results_.pdf -------------------------------------------------------------------------------- /reconstruction_prediction/results_depositsprecip/precitmap/snapshot_plot/predictionera51results_.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EarthByte/paleoclimate-reconstruction/HEAD/reconstruction_prediction/results_depositsprecip/precitmap/snapshot_plot/predictionera51results_.pdf -------------------------------------------------------------------------------- /reconstruction_prediction/results_depositsprecip/precitmap/snapshot_plot/predictionera61results_.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EarthByte/paleoclimate-reconstruction/HEAD/reconstruction_prediction/results_depositsprecip/precitmap/snapshot_plot/predictionera61results_.pdf -------------------------------------------------------------------------------- /reconstruction_prediction/results_depositsprecip/precitmap/snapshot_plot/predictionera77results_.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EarthByte/paleoclimate-reconstruction/HEAD/reconstruction_prediction/results_depositsprecip/precitmap/snapshot_plot/predictionera77results_.pdf -------------------------------------------------------------------------------- /reconstruction_prediction/run_results_visualisations_.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EarthByte/paleoclimate-reconstruction/HEAD/reconstruction_prediction/run_results_visualisations_.sh -------------------------------------------------------------------------------- /reconstruction_prediction/split_eras.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EarthByte/paleoclimate-reconstruction/HEAD/reconstruction_prediction/split_eras.py --------------------------------------------------------------------------------