├── DATA ├── .gitignore ├── AZEL │ ├── .gitignore │ └── sample │ │ ├── .gitignore │ │ ├── azel_18SEP21XU.txt │ │ └── azel_2001010100_UNI.txt ├── DIARY │ └── .gitignore ├── EPOLOG1 │ └── .gitignore ├── EPOLOG2 │ └── .gitignore ├── ERROR_LOG │ └── .gitignore ├── GRIB │ ├── .gitignore │ └── sample │ │ ├── .gitignore │ │ ├── 2018010400.txt │ │ └── 2018010406.txt ├── GRIB_EPOCHS │ └── .gitignore ├── INPUT │ ├── .gitignore │ └── sample │ │ ├── .gitignore │ │ ├── AZEL_list.txt │ │ ├── AZEL_spec.txt │ │ └── AZEL_spec_SLR.txt ├── SESSION_INDEX1 │ └── .gitignore ├── SESSION_INDEX2 │ └── .gitignore ├── STATIONS │ └── .gitignore └── UNDULATIONS │ ├── .gitignore │ ├── global_undulations_dint_lat0.125_dint_lon0.125.txt.zip │ ├── global_undulations_dint_lat0.250_dint_lon0.250.txt │ ├── global_undulations_dint_lat0.500_dint_lon0.500.txt │ └── global_undulations_dint_lat1.000_dint_lon1.000.txt ├── FUN_ADD ├── .gitignore ├── create_azel_list.sh └── create_azel_name_list.f90 ├── FUN_TEXT ├── .gitignore ├── RADIATE_Fortran_start.f90 ├── RADIATE_readme.txt ├── RayTrace_main_global.f90 ├── adapt_lat_lon_to_interval.f90 ├── bilinear_interpolation.f90 ├── compile_RADIATE.sh ├── create_session_index_and_epologs_dual.f90 ├── create_session_index_and_epologs_single.f90 ├── determine_grid_points.f90 ├── determine_lat_lon.f90 ├── get_elapsed_time.f90 ├── get_global_undulation.f90 ├── get_gribdata_txt.f90 ├── load_epologs.f90 ├── module_R_earth_euler.f90 ├── module_calc_refr_ind_at_stations.f90 ├── module_char_case.f90 ├── module_combine_and_sort_rd.f90 ├── module_constants.f90 ├── module_create_errorlog.f90 ├── module_create_radiate_global.f90 ├── module_create_trp_global.f90 ├── module_date2mjd.f90 ├── module_date_type_definition.f90 ├── module_ell2xyz.f90 ├── module_get_RayTrace2D_Thayer_global.f90 ├── module_get_RayTrace2D_pwl_global.f90 ├── module_get_RayTrace2D_ref_pwl_global.f90 ├── module_get_bilint_value.f90 ├── module_get_coord_observing_stations.f90 ├── module_get_observing_stations.f90 ├── module_get_ref_pwl_delay.f90 ├── module_get_ref_pwl_delay_zenith.f90 ├── module_get_unique_stations_with_coord.f90 ├── module_global_var.f90 ├── module_gph2horth.f90 ├── module_gribtxt_get_meteo_undulation_refr_glob.f90 ├── module_gridwise_refrHD_ECMWFmin.f90 ├── module_gridwise_refrHD_optical_ECMWFmin.f90 ├── module_import_station_data.f90 ├── module_lagrange_int.f90 ├── module_load_session_index.f90 ├── module_mean_total.f90 ├── module_meshgrid2D.f90 ├── module_meteo_constants.f90 ├── module_mjd2date.f90 ├── module_mjd2doy.f90 ├── module_msort.f90 ├── module_profilewise_refrHD_ECMWFmin.f90 ├── module_profilewise_refrHD_optical_ECMWFmin.f90 ├── module_qsort.f90 ├── module_resize_errorlog.f90 ├── module_sort_type_definitions.f90 ├── module_standard_atm.f90 ├── module_time_interpolation.f90 ├── module_type_definitions.f90 ├── run_multiple_sessions.sh └── test_start_values_and_global_coverage.f90 ├── LICENSE ├── README.md ├── RESULTS ├── .gitignore ├── RADIATE │ └── .gitignore └── TRP │ └── .gitignore └── TEMP └── .gitignore /DATA/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TUW-VieVS/RADIATE/HEAD/DATA/.gitignore -------------------------------------------------------------------------------- /DATA/AZEL/.gitignore: -------------------------------------------------------------------------------- 1 | * 2 | !.gitignore 3 | !sample/ -------------------------------------------------------------------------------- /DATA/AZEL/sample/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TUW-VieVS/RADIATE/HEAD/DATA/AZEL/sample/.gitignore -------------------------------------------------------------------------------- /DATA/AZEL/sample/azel_18SEP21XU.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TUW-VieVS/RADIATE/HEAD/DATA/AZEL/sample/azel_18SEP21XU.txt -------------------------------------------------------------------------------- /DATA/AZEL/sample/azel_2001010100_UNI.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TUW-VieVS/RADIATE/HEAD/DATA/AZEL/sample/azel_2001010100_UNI.txt -------------------------------------------------------------------------------- /DATA/DIARY/.gitignore: -------------------------------------------------------------------------------- 1 | * 2 | !.gitignore 3 | -------------------------------------------------------------------------------- /DATA/EPOLOG1/.gitignore: -------------------------------------------------------------------------------- 1 | * 2 | !.gitignore 3 | -------------------------------------------------------------------------------- /DATA/EPOLOG2/.gitignore: -------------------------------------------------------------------------------- 1 | * 2 | !.gitignore 3 | -------------------------------------------------------------------------------- /DATA/ERROR_LOG/.gitignore: -------------------------------------------------------------------------------- 1 | * 2 | !.gitignore 3 | -------------------------------------------------------------------------------- /DATA/GRIB/.gitignore: -------------------------------------------------------------------------------- 1 | * 2 | !.gitignore 3 | !sample/ 4 | -------------------------------------------------------------------------------- /DATA/GRIB/sample/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TUW-VieVS/RADIATE/HEAD/DATA/GRIB/sample/.gitignore -------------------------------------------------------------------------------- /DATA/GRIB/sample/2018010400.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TUW-VieVS/RADIATE/HEAD/DATA/GRIB/sample/2018010400.txt -------------------------------------------------------------------------------- /DATA/GRIB/sample/2018010406.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TUW-VieVS/RADIATE/HEAD/DATA/GRIB/sample/2018010406.txt -------------------------------------------------------------------------------- /DATA/GRIB_EPOCHS/.gitignore: -------------------------------------------------------------------------------- 1 | * 2 | !.gitignore 3 | -------------------------------------------------------------------------------- /DATA/INPUT/.gitignore: -------------------------------------------------------------------------------- 1 | * 2 | !.gitignore 3 | !sample/ 4 | -------------------------------------------------------------------------------- /DATA/INPUT/sample/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TUW-VieVS/RADIATE/HEAD/DATA/INPUT/sample/.gitignore -------------------------------------------------------------------------------- /DATA/INPUT/sample/AZEL_list.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TUW-VieVS/RADIATE/HEAD/DATA/INPUT/sample/AZEL_list.txt -------------------------------------------------------------------------------- /DATA/INPUT/sample/AZEL_spec.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TUW-VieVS/RADIATE/HEAD/DATA/INPUT/sample/AZEL_spec.txt -------------------------------------------------------------------------------- /DATA/INPUT/sample/AZEL_spec_SLR.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TUW-VieVS/RADIATE/HEAD/DATA/INPUT/sample/AZEL_spec_SLR.txt -------------------------------------------------------------------------------- /DATA/SESSION_INDEX1/.gitignore: -------------------------------------------------------------------------------- 1 | * 2 | !.gitignore 3 | -------------------------------------------------------------------------------- /DATA/SESSION_INDEX2/.gitignore: -------------------------------------------------------------------------------- 1 | * 2 | !.gitignore 3 | -------------------------------------------------------------------------------- /DATA/STATIONS/.gitignore: -------------------------------------------------------------------------------- 1 | * 2 | !.gitignore 3 | -------------------------------------------------------------------------------- /DATA/UNDULATIONS/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TUW-VieVS/RADIATE/HEAD/DATA/UNDULATIONS/.gitignore -------------------------------------------------------------------------------- /DATA/UNDULATIONS/global_undulations_dint_lat0.125_dint_lon0.125.txt.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TUW-VieVS/RADIATE/HEAD/DATA/UNDULATIONS/global_undulations_dint_lat0.125_dint_lon0.125.txt.zip -------------------------------------------------------------------------------- /DATA/UNDULATIONS/global_undulations_dint_lat0.250_dint_lon0.250.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TUW-VieVS/RADIATE/HEAD/DATA/UNDULATIONS/global_undulations_dint_lat0.250_dint_lon0.250.txt -------------------------------------------------------------------------------- /DATA/UNDULATIONS/global_undulations_dint_lat0.500_dint_lon0.500.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TUW-VieVS/RADIATE/HEAD/DATA/UNDULATIONS/global_undulations_dint_lat0.500_dint_lon0.500.txt -------------------------------------------------------------------------------- /DATA/UNDULATIONS/global_undulations_dint_lat1.000_dint_lon1.000.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TUW-VieVS/RADIATE/HEAD/DATA/UNDULATIONS/global_undulations_dint_lat1.000_dint_lon1.000.txt -------------------------------------------------------------------------------- /FUN_ADD/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TUW-VieVS/RADIATE/HEAD/FUN_ADD/.gitignore -------------------------------------------------------------------------------- /FUN_ADD/create_azel_list.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TUW-VieVS/RADIATE/HEAD/FUN_ADD/create_azel_list.sh -------------------------------------------------------------------------------- /FUN_ADD/create_azel_name_list.f90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TUW-VieVS/RADIATE/HEAD/FUN_ADD/create_azel_name_list.f90 -------------------------------------------------------------------------------- /FUN_TEXT/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TUW-VieVS/RADIATE/HEAD/FUN_TEXT/.gitignore -------------------------------------------------------------------------------- /FUN_TEXT/RADIATE_Fortran_start.f90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TUW-VieVS/RADIATE/HEAD/FUN_TEXT/RADIATE_Fortran_start.f90 -------------------------------------------------------------------------------- /FUN_TEXT/RADIATE_readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TUW-VieVS/RADIATE/HEAD/FUN_TEXT/RADIATE_readme.txt -------------------------------------------------------------------------------- /FUN_TEXT/RayTrace_main_global.f90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TUW-VieVS/RADIATE/HEAD/FUN_TEXT/RayTrace_main_global.f90 -------------------------------------------------------------------------------- /FUN_TEXT/adapt_lat_lon_to_interval.f90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TUW-VieVS/RADIATE/HEAD/FUN_TEXT/adapt_lat_lon_to_interval.f90 -------------------------------------------------------------------------------- /FUN_TEXT/bilinear_interpolation.f90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TUW-VieVS/RADIATE/HEAD/FUN_TEXT/bilinear_interpolation.f90 -------------------------------------------------------------------------------- /FUN_TEXT/compile_RADIATE.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TUW-VieVS/RADIATE/HEAD/FUN_TEXT/compile_RADIATE.sh -------------------------------------------------------------------------------- /FUN_TEXT/create_session_index_and_epologs_dual.f90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TUW-VieVS/RADIATE/HEAD/FUN_TEXT/create_session_index_and_epologs_dual.f90 -------------------------------------------------------------------------------- /FUN_TEXT/create_session_index_and_epologs_single.f90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TUW-VieVS/RADIATE/HEAD/FUN_TEXT/create_session_index_and_epologs_single.f90 -------------------------------------------------------------------------------- /FUN_TEXT/determine_grid_points.f90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TUW-VieVS/RADIATE/HEAD/FUN_TEXT/determine_grid_points.f90 -------------------------------------------------------------------------------- /FUN_TEXT/determine_lat_lon.f90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TUW-VieVS/RADIATE/HEAD/FUN_TEXT/determine_lat_lon.f90 -------------------------------------------------------------------------------- /FUN_TEXT/get_elapsed_time.f90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TUW-VieVS/RADIATE/HEAD/FUN_TEXT/get_elapsed_time.f90 -------------------------------------------------------------------------------- /FUN_TEXT/get_global_undulation.f90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TUW-VieVS/RADIATE/HEAD/FUN_TEXT/get_global_undulation.f90 -------------------------------------------------------------------------------- /FUN_TEXT/get_gribdata_txt.f90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TUW-VieVS/RADIATE/HEAD/FUN_TEXT/get_gribdata_txt.f90 -------------------------------------------------------------------------------- /FUN_TEXT/load_epologs.f90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TUW-VieVS/RADIATE/HEAD/FUN_TEXT/load_epologs.f90 -------------------------------------------------------------------------------- /FUN_TEXT/module_R_earth_euler.f90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TUW-VieVS/RADIATE/HEAD/FUN_TEXT/module_R_earth_euler.f90 -------------------------------------------------------------------------------- /FUN_TEXT/module_calc_refr_ind_at_stations.f90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TUW-VieVS/RADIATE/HEAD/FUN_TEXT/module_calc_refr_ind_at_stations.f90 -------------------------------------------------------------------------------- /FUN_TEXT/module_char_case.f90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TUW-VieVS/RADIATE/HEAD/FUN_TEXT/module_char_case.f90 -------------------------------------------------------------------------------- /FUN_TEXT/module_combine_and_sort_rd.f90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TUW-VieVS/RADIATE/HEAD/FUN_TEXT/module_combine_and_sort_rd.f90 -------------------------------------------------------------------------------- /FUN_TEXT/module_constants.f90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TUW-VieVS/RADIATE/HEAD/FUN_TEXT/module_constants.f90 -------------------------------------------------------------------------------- /FUN_TEXT/module_create_errorlog.f90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TUW-VieVS/RADIATE/HEAD/FUN_TEXT/module_create_errorlog.f90 -------------------------------------------------------------------------------- /FUN_TEXT/module_create_radiate_global.f90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TUW-VieVS/RADIATE/HEAD/FUN_TEXT/module_create_radiate_global.f90 -------------------------------------------------------------------------------- /FUN_TEXT/module_create_trp_global.f90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TUW-VieVS/RADIATE/HEAD/FUN_TEXT/module_create_trp_global.f90 -------------------------------------------------------------------------------- /FUN_TEXT/module_date2mjd.f90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TUW-VieVS/RADIATE/HEAD/FUN_TEXT/module_date2mjd.f90 -------------------------------------------------------------------------------- /FUN_TEXT/module_date_type_definition.f90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TUW-VieVS/RADIATE/HEAD/FUN_TEXT/module_date_type_definition.f90 -------------------------------------------------------------------------------- /FUN_TEXT/module_ell2xyz.f90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TUW-VieVS/RADIATE/HEAD/FUN_TEXT/module_ell2xyz.f90 -------------------------------------------------------------------------------- /FUN_TEXT/module_get_RayTrace2D_Thayer_global.f90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TUW-VieVS/RADIATE/HEAD/FUN_TEXT/module_get_RayTrace2D_Thayer_global.f90 -------------------------------------------------------------------------------- /FUN_TEXT/module_get_RayTrace2D_pwl_global.f90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TUW-VieVS/RADIATE/HEAD/FUN_TEXT/module_get_RayTrace2D_pwl_global.f90 -------------------------------------------------------------------------------- /FUN_TEXT/module_get_RayTrace2D_ref_pwl_global.f90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TUW-VieVS/RADIATE/HEAD/FUN_TEXT/module_get_RayTrace2D_ref_pwl_global.f90 -------------------------------------------------------------------------------- /FUN_TEXT/module_get_bilint_value.f90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TUW-VieVS/RADIATE/HEAD/FUN_TEXT/module_get_bilint_value.f90 -------------------------------------------------------------------------------- /FUN_TEXT/module_get_coord_observing_stations.f90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TUW-VieVS/RADIATE/HEAD/FUN_TEXT/module_get_coord_observing_stations.f90 -------------------------------------------------------------------------------- /FUN_TEXT/module_get_observing_stations.f90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TUW-VieVS/RADIATE/HEAD/FUN_TEXT/module_get_observing_stations.f90 -------------------------------------------------------------------------------- /FUN_TEXT/module_get_ref_pwl_delay.f90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TUW-VieVS/RADIATE/HEAD/FUN_TEXT/module_get_ref_pwl_delay.f90 -------------------------------------------------------------------------------- /FUN_TEXT/module_get_ref_pwl_delay_zenith.f90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TUW-VieVS/RADIATE/HEAD/FUN_TEXT/module_get_ref_pwl_delay_zenith.f90 -------------------------------------------------------------------------------- /FUN_TEXT/module_get_unique_stations_with_coord.f90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TUW-VieVS/RADIATE/HEAD/FUN_TEXT/module_get_unique_stations_with_coord.f90 -------------------------------------------------------------------------------- /FUN_TEXT/module_global_var.f90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TUW-VieVS/RADIATE/HEAD/FUN_TEXT/module_global_var.f90 -------------------------------------------------------------------------------- /FUN_TEXT/module_gph2horth.f90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TUW-VieVS/RADIATE/HEAD/FUN_TEXT/module_gph2horth.f90 -------------------------------------------------------------------------------- /FUN_TEXT/module_gribtxt_get_meteo_undulation_refr_glob.f90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TUW-VieVS/RADIATE/HEAD/FUN_TEXT/module_gribtxt_get_meteo_undulation_refr_glob.f90 -------------------------------------------------------------------------------- /FUN_TEXT/module_gridwise_refrHD_ECMWFmin.f90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TUW-VieVS/RADIATE/HEAD/FUN_TEXT/module_gridwise_refrHD_ECMWFmin.f90 -------------------------------------------------------------------------------- /FUN_TEXT/module_gridwise_refrHD_optical_ECMWFmin.f90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TUW-VieVS/RADIATE/HEAD/FUN_TEXT/module_gridwise_refrHD_optical_ECMWFmin.f90 -------------------------------------------------------------------------------- /FUN_TEXT/module_import_station_data.f90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TUW-VieVS/RADIATE/HEAD/FUN_TEXT/module_import_station_data.f90 -------------------------------------------------------------------------------- /FUN_TEXT/module_lagrange_int.f90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TUW-VieVS/RADIATE/HEAD/FUN_TEXT/module_lagrange_int.f90 -------------------------------------------------------------------------------- /FUN_TEXT/module_load_session_index.f90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TUW-VieVS/RADIATE/HEAD/FUN_TEXT/module_load_session_index.f90 -------------------------------------------------------------------------------- /FUN_TEXT/module_mean_total.f90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TUW-VieVS/RADIATE/HEAD/FUN_TEXT/module_mean_total.f90 -------------------------------------------------------------------------------- /FUN_TEXT/module_meshgrid2D.f90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TUW-VieVS/RADIATE/HEAD/FUN_TEXT/module_meshgrid2D.f90 -------------------------------------------------------------------------------- /FUN_TEXT/module_meteo_constants.f90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TUW-VieVS/RADIATE/HEAD/FUN_TEXT/module_meteo_constants.f90 -------------------------------------------------------------------------------- /FUN_TEXT/module_mjd2date.f90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TUW-VieVS/RADIATE/HEAD/FUN_TEXT/module_mjd2date.f90 -------------------------------------------------------------------------------- /FUN_TEXT/module_mjd2doy.f90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TUW-VieVS/RADIATE/HEAD/FUN_TEXT/module_mjd2doy.f90 -------------------------------------------------------------------------------- /FUN_TEXT/module_msort.f90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TUW-VieVS/RADIATE/HEAD/FUN_TEXT/module_msort.f90 -------------------------------------------------------------------------------- /FUN_TEXT/module_profilewise_refrHD_ECMWFmin.f90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TUW-VieVS/RADIATE/HEAD/FUN_TEXT/module_profilewise_refrHD_ECMWFmin.f90 -------------------------------------------------------------------------------- /FUN_TEXT/module_profilewise_refrHD_optical_ECMWFmin.f90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TUW-VieVS/RADIATE/HEAD/FUN_TEXT/module_profilewise_refrHD_optical_ECMWFmin.f90 -------------------------------------------------------------------------------- /FUN_TEXT/module_qsort.f90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TUW-VieVS/RADIATE/HEAD/FUN_TEXT/module_qsort.f90 -------------------------------------------------------------------------------- /FUN_TEXT/module_resize_errorlog.f90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TUW-VieVS/RADIATE/HEAD/FUN_TEXT/module_resize_errorlog.f90 -------------------------------------------------------------------------------- /FUN_TEXT/module_sort_type_definitions.f90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TUW-VieVS/RADIATE/HEAD/FUN_TEXT/module_sort_type_definitions.f90 -------------------------------------------------------------------------------- /FUN_TEXT/module_standard_atm.f90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TUW-VieVS/RADIATE/HEAD/FUN_TEXT/module_standard_atm.f90 -------------------------------------------------------------------------------- /FUN_TEXT/module_time_interpolation.f90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TUW-VieVS/RADIATE/HEAD/FUN_TEXT/module_time_interpolation.f90 -------------------------------------------------------------------------------- /FUN_TEXT/module_type_definitions.f90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TUW-VieVS/RADIATE/HEAD/FUN_TEXT/module_type_definitions.f90 -------------------------------------------------------------------------------- /FUN_TEXT/run_multiple_sessions.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TUW-VieVS/RADIATE/HEAD/FUN_TEXT/run_multiple_sessions.sh -------------------------------------------------------------------------------- /FUN_TEXT/test_start_values_and_global_coverage.f90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TUW-VieVS/RADIATE/HEAD/FUN_TEXT/test_start_values_and_global_coverage.f90 -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TUW-VieVS/RADIATE/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TUW-VieVS/RADIATE/HEAD/README.md -------------------------------------------------------------------------------- /RESULTS/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TUW-VieVS/RADIATE/HEAD/RESULTS/.gitignore -------------------------------------------------------------------------------- /RESULTS/RADIATE/.gitignore: -------------------------------------------------------------------------------- 1 | * 2 | !.gitignore -------------------------------------------------------------------------------- /RESULTS/TRP/.gitignore: -------------------------------------------------------------------------------- 1 | * 2 | !.gitignore -------------------------------------------------------------------------------- /TEMP/.gitignore: -------------------------------------------------------------------------------- 1 | * 2 | !.gitignore --------------------------------------------------------------------------------