mirror of
https://github.com/SatDump/SatDump
synced 2026-08-13 17:47:30 -04:00
1005 lines
No EOL
37 KiB
JSON
1005 lines
No EOL
37 KiB
JSON
{
|
|
// Settings for the SatDump UI
|
|
"user_interface": {
|
|
// Parameters shown in the default UI table, for everything
|
|
"default_offline_parameters": {
|
|
"baseband_format": {
|
|
"type": "options",
|
|
"value": "s8",
|
|
"name": "Baseband Format",
|
|
"options": [
|
|
"s8",
|
|
"u8",
|
|
"s16",
|
|
"f32",
|
|
"ziq"
|
|
],
|
|
"description": "The sample format of the recorded baseband.\nThis depends on the settings of your recording software,\nbut some common formats are s16 (SDR#, etc),\nf32 (GQRX), u8 (HDSDR), etc",
|
|
"no_live": true
|
|
},
|
|
"samplerate": {
|
|
"type": "int",
|
|
"value": 6000000,
|
|
"name": "Samplerate",
|
|
"no_live": true
|
|
},
|
|
"dc_block": {
|
|
"type": "bool",
|
|
"value": false,
|
|
"name": "DC Blocking",
|
|
"description": "DC Blocking allows removing a DC Spike / Offset present on some SDR.\n A classic example would the HackRF which often has this sort of issues."
|
|
},
|
|
"iq_swap": {
|
|
"type": "bool",
|
|
"value": false,
|
|
"name": "IQ Swap",
|
|
"description": "In some cases, the I and Q branches can be swapped.\nThat can happen when using some downconverters,\nor perhaps some software that records the file in an unusual way."
|
|
},
|
|
"freq_shift": {
|
|
"type": "int",
|
|
"value": 0,
|
|
"name": "Frequency Shift",
|
|
"description": "Can be used to offset the signal."
|
|
}
|
|
},
|
|
//
|
|
//
|
|
// Other settings. We utilize the same parameter system, easier that way :-)
|
|
"light_theme": {
|
|
"type": "bool",
|
|
"value": false,
|
|
"name": "Light UI Theme",
|
|
"description": "This enables a more classic white-based UI theme, making the UI more usable in the sun on a dimmer display or simply easier to read if you don't prefer the Dark theme"
|
|
},
|
|
"manual_dpi_scaling": {
|
|
"type": "float",
|
|
"value": 1.0,
|
|
"name": "DPI Scaling",
|
|
"description": "DPI Scaling defines the overall UI scale. This can be used to make it bigger or smaller depending on your display's pixel density."
|
|
},
|
|
"finish_processing_after_live": {
|
|
"type": "bool",
|
|
"value": true,
|
|
"name": "Finish processing when stopping live",
|
|
"description": "Launch an offline processing task when you press \"Stop\",\nto finish processing down to the end of the pipeline."
|
|
},
|
|
"open_viewer_post_processing": {
|
|
"type": "bool",
|
|
"value": true,
|
|
"name": "Open Viewer after decoding",
|
|
"description": "Open the decoded data in the viewer after decoding is done"
|
|
},
|
|
"show_waterfall_demod_fft": {
|
|
"type": "bool",
|
|
"value": true,
|
|
"name": "Demod FFT Waterfall",
|
|
"description": "Enable the FFT Waterfall shown in the small FFT available in demodulators\nThis does increase CPU usage"
|
|
},
|
|
"recorder_floating_windows": {
|
|
"type": "bool",
|
|
"value": false,
|
|
"name": "Recorder Floating Windows",
|
|
"description": "Make module windows in the recorder float.\nThis allows dragging them around at will"
|
|
}
|
|
},
|
|
// More generic SatDump settings
|
|
"satdump_general": {
|
|
"log_level": {
|
|
"type": "options",
|
|
"value": "trace",
|
|
"name": "Log Level",
|
|
"options": [
|
|
"trace",
|
|
"debug",
|
|
"info",
|
|
"warn",
|
|
"error",
|
|
"critical"
|
|
],
|
|
"description": "The logger level of SatDump in the console.\nEg, if you wish to only show errors\nor every little thing that's going on",
|
|
"no_live": true
|
|
},
|
|
"log_to_file": {
|
|
"type": "bool",
|
|
"value": true,
|
|
"name": "Save log file",
|
|
"description": "Save ALL SatDump logs to a file.\nThis is useful to send in\nbug reports and such."
|
|
},
|
|
"opencl_device": {
|
|
"platform": 0,
|
|
"device": 0
|
|
},
|
|
"update_tles_startup": {
|
|
"type": "bool",
|
|
"value": false,
|
|
"name": "Update TLEs on Startup",
|
|
"description": "If this is enabled, TLEs will be updated each time SatDump is started"
|
|
},
|
|
"auto_process_products": {
|
|
"type": "bool",
|
|
"value": true,
|
|
"name": "Automatically Process Products",
|
|
"description": "Process products once the pipeline is done."
|
|
}
|
|
},
|
|
// Output directories
|
|
"satdump_output_directories": {
|
|
"recording_path": {
|
|
"type": "path",
|
|
"is_directory": true,
|
|
"value": ".",
|
|
"name": "Baseband Recorder directory",
|
|
"description": "Path to a folder where I/Q recordings will be saved"
|
|
},
|
|
"live_processing_autogen": {
|
|
"type": "bool",
|
|
"value": true,
|
|
"name": "Live Processing Output Autogeneration",
|
|
"description": "Should live processing automatically generate an output folder?"
|
|
},
|
|
"live_processing_path": {
|
|
"type": "path",
|
|
"is_directory": true,
|
|
"value": "./live_output",
|
|
"name": "Live Processing Directory",
|
|
"description": "Path to the default folder to use to store live processing\nOnly valid when automatic generation is enabled!"
|
|
}
|
|
},
|
|
// TLE settings
|
|
"tle_settings": {
|
|
"url_template": "http://www.celestrak.org/NORAD/elements/gp.php?CATNR=%NORAD%",
|
|
"tles_to_fetch": [
|
|
29499, // MetOp-A
|
|
38771, // MetOp-B
|
|
43689, // MetOp-C
|
|
25338, // NOAA-15
|
|
28654, // NOAA-18
|
|
33591, // NOAA-19
|
|
32958, // FengYun-3A
|
|
37214, // FengYun-3B
|
|
39260, // FengYun-3C
|
|
43010, // FengYun-3D
|
|
49008, // FengYun-3E
|
|
35865, // METEOR-M1
|
|
40069, // METEOR-M2
|
|
44387, // METEOR-M2-2
|
|
25994, // Terra
|
|
27424, // Aqua
|
|
28376, // Aura
|
|
37849, // Suomi-NPP
|
|
43013, // JPSS-1
|
|
41240, // Jason-3
|
|
43662, // CFOSAT-1
|
|
27640, // Coriolis
|
|
26958, // Proba-1
|
|
36037, // Proba-2
|
|
39159, // Proba-V
|
|
29107 // CloudSat
|
|
]
|
|
},
|
|
// Settings for the Viewer. Those also are default settings when generating viewer-less
|
|
"viewer": {
|
|
"instruments": {
|
|
"chris": {
|
|
"handler": "image_handler",
|
|
"name": "CHRIS",
|
|
"rgb_composites": {
|
|
// LOW
|
|
"LOW_RGB-080502-[land]": {
|
|
"equation": "(((ch8-0.1243)/(1-0.1243))^(1/2.28)), (((ch5-0.1243)/(1-0.1243))^(1/2.28)), (((ch2-0.1243)/(1-0.1243))^(1/2.28))"
|
|
},
|
|
"LOW_EVI-(vegetation)": {
|
|
"equation": "((ch19-ch8)/(ch19+6*ch8-7.5*ch2+1))*2"
|
|
},
|
|
"LOW_EVI-141908-(vegetation)": {
|
|
"equation": "ch14 * 1.5, (ch19 + (ch19-ch8)*1.5/(ch19+6*ch8-7.5*ch2+1)) * 1.5, ch8* 1.5"
|
|
},
|
|
"LOW_RGB-191908-(221)": {
|
|
"equation": "ch19*2, ch19*2, ch8*2"
|
|
},
|
|
"LOW_EVI-(vegetation)-[chlorophyll]": {
|
|
"equation": "((ch15-ch8)/(ch15+6*ch8-7.5*ch2+1))*1.5"
|
|
},
|
|
"LOW_EVI-101808-(vegetation)-[chlorophyll]": {
|
|
"equation": "ch10 * 1.5, ch18 + (ch15-ch8)/(ch15+6*ch8-7.5*ch2+1) * 1.5, ch8* 1.5"
|
|
},
|
|
"LOW_RGB-151508-(221)-[chlorophyll]": {
|
|
"equation": "ch19*2, ch19*2, ch8*2"
|
|
},
|
|
"LOW_RGB-120805-[water]": {
|
|
"equation": "(((ch12-0.086)/(0.16-0.086)^1.02)*(0.16-0.086))/0.12, (((ch8-0.086)/(0.16-0.086)^1.2)*(0.16-0.086))/0.12, (((ch5-0.086)/(0.16-0.086)^1.2)*(0.16-0.086))/0.12"
|
|
},
|
|
// ALL
|
|
"ALL_RGB-251607-(RGB)": {
|
|
"equation": "ch25 * 1.65, ch16 * 2.1, ch7 * 2"
|
|
},
|
|
"ALL_RGB-464625-(221)": {
|
|
"equation": "ch46 * 2, ch46 * 2, ch25 * 2"
|
|
},
|
|
"ALL_EVI-634625-(vegetation)": {
|
|
"equation": "ch63, ch46 + ((ch46-ch25)/(ch46+6*ch25-7.5*ch7+1)), ch25"
|
|
},
|
|
"ALL_EVI-(vegetation)": {
|
|
"equation": "((ch46-ch25)/(ch46+6*ch25-7.5*ch7+1))*1.5"
|
|
}
|
|
}
|
|
},
|
|
"avhrr_3": {
|
|
"handler": "image_handler",
|
|
"name": "AVHRR/3",
|
|
"rgb_composites": {
|
|
"221": {
|
|
"equation": "ch2, ch2, ch1",
|
|
"geo_correct": true,
|
|
"project": {
|
|
"width": 4096,
|
|
"height": 2048,
|
|
"old_algo": true,
|
|
"draw_map": true,
|
|
"equalize": true,
|
|
"config": {
|
|
"type": "equirectangular"
|
|
}
|
|
}
|
|
},
|
|
"3a21": {
|
|
"equation": "ch3a, ch2, ch1",
|
|
"geo_correct": true
|
|
},
|
|
"3a21/221 Mix": {
|
|
"equation": "(ch3a * 0.4 + ch2 * 0.6) * 2.2 - 0.15, ch2 * 2.2 - 0.15, ch1 * 2.2 - 0.15",
|
|
"geo_correct": true
|
|
},
|
|
"4/221 Merge": {
|
|
"equation": "ch1 < 0.065 ? (ch4 - 0.7) * 2.66 : ch2 * 2.2 - 0.15, ch1 < 0.065 ? (ch4 - 0.7) * 2.66 : ch2 * 2.2 - 0.15, ch1 < 0.065 ? (ch4 - 0.7) * 2.66 : ch1 * 2.2 - 0.15",
|
|
"geo_correct": true
|
|
},
|
|
"543b": {
|
|
"equation": "ch5, ch4, ch3b",
|
|
"equalize": true,
|
|
"geo_correct": true
|
|
},
|
|
"3b45": {
|
|
"equation": "ch3b, ch4, ch5",
|
|
"equalize": true,
|
|
"geo_correct": true
|
|
},
|
|
"124": {
|
|
"equation": "ch1, ch2, ch4",
|
|
"equalize": true,
|
|
"geo_correct": true,
|
|
"project": {
|
|
"width": 4096,
|
|
"height": 2048,
|
|
"old_algo": true,
|
|
"draw_map": true,
|
|
"config": {
|
|
"type": "equirectangular"
|
|
}
|
|
}
|
|
},
|
|
"4 Equalized": {
|
|
"equation": "ch4",
|
|
"equalize": true,
|
|
"geo_correct": true
|
|
},
|
|
"Night Microphysics": {
|
|
"equation": "(1-ch5)-(1-ch4),(1-ch4)-(1-ch3b),(1-ch4)",
|
|
"geo_correct": true,
|
|
"equalize": true,
|
|
"white_balance": true
|
|
},
|
|
"Day Microphysics": {
|
|
"equation": "ch1, (1-ch3a)^2.5,(1-ch4)",
|
|
"geo_correct": true,
|
|
"equalize": true
|
|
}
|
|
},
|
|
"project_channels": {
|
|
"channels": "4",
|
|
"width": 4096,
|
|
"height": 2048,
|
|
"equalize": true,
|
|
"old_algo": true,
|
|
"draw_map": true,
|
|
"config": {
|
|
"type": "equirectangular"
|
|
}
|
|
}
|
|
},
|
|
"avhrr_apt": {
|
|
"handler": "image_handler",
|
|
"name": "AVHRR APT",
|
|
"rgb_composites": {
|
|
"224": {
|
|
"equation": "cha + 0.01, cha, chb - 0.2"
|
|
},
|
|
"A Equalized": {
|
|
"equation": "cha",
|
|
"equalize": true
|
|
},
|
|
"B Equalized": {
|
|
"equation": "chb",
|
|
"equalize": true
|
|
}
|
|
},
|
|
"project_channels": {}
|
|
},
|
|
"virr": {
|
|
"handler": "image_handler",
|
|
"name": "VIRR",
|
|
"rgb_composites": {
|
|
"221": {
|
|
"equation": "ch2, ch2, ch1",
|
|
"equalize": true,
|
|
"geo_correct": true
|
|
},
|
|
"621": {
|
|
"equation": "ch6, ch2, ch1",
|
|
"equalize": true,
|
|
"geo_correct": true,
|
|
"project": {
|
|
"width": 4096,
|
|
"height": 2048,
|
|
"old_algo": true,
|
|
"draw_map": true,
|
|
"equalize": true,
|
|
"config": {
|
|
"type": "equirectangular"
|
|
}
|
|
}
|
|
},
|
|
"197": {
|
|
"equation": "ch1, ch9, ch7",
|
|
"equalize": true,
|
|
"geo_correct": true,
|
|
"project": {
|
|
"width": 4096,
|
|
"height": 2048,
|
|
"old_algo": true,
|
|
"draw_map": true,
|
|
"equalize": true,
|
|
"config": {
|
|
"type": "equirectangular"
|
|
}
|
|
}
|
|
},
|
|
"4/221 Merge": {
|
|
"equation": "ch1 < 0.015 ? (ch4 - 0.45) * 2.66 : ch2 * 7.2 - 0.07, ch1 < 0.015 ? (ch4 - 0.45) * 2.66 : ch2 * 7.2 - 0.07, ch1 < 0.015 ? (ch4 - 0.45) * 2.66 : ch1 * 7.2 - 0.07",
|
|
"equalize": true,
|
|
"geo_correct": true,
|
|
"project": {
|
|
"width": 4096,
|
|
"height": 2048,
|
|
"old_algo": true,
|
|
"draw_map": true,
|
|
"config": {
|
|
"type": "equirectangular"
|
|
}
|
|
}
|
|
},
|
|
"4 Equalized": {
|
|
"equation": "ch4",
|
|
"equalize": true,
|
|
"geo_correct": true,
|
|
"project": {
|
|
"width": 4096,
|
|
"height": 2048,
|
|
"old_algo": true,
|
|
"draw_map": true,
|
|
"equalize": true,
|
|
"config": {
|
|
"type": "equirectangular"
|
|
}
|
|
}
|
|
}
|
|
},
|
|
"project_channels": {
|
|
"channels": "4",
|
|
"width": 4096,
|
|
"height": 2048,
|
|
"equalize": true,
|
|
"old_algo": true,
|
|
"draw_map": true,
|
|
"config": {
|
|
"type": "equirectangular"
|
|
}
|
|
}
|
|
},
|
|
"msu_mr": {
|
|
"handler": "image_handler",
|
|
"name": "MSU-MR",
|
|
"rgb_composites": {
|
|
"221": {
|
|
"equation": "ch2, ch2, ch1",
|
|
"geo_correct": true
|
|
},
|
|
"321": {
|
|
"equation": "ch3, ch2, ch1",
|
|
"geo_correct": true,
|
|
"project": {
|
|
"width": 4096,
|
|
"height": 2048,
|
|
"old_algo": true,
|
|
"draw_map": true,
|
|
"equalize": true,
|
|
"config": {
|
|
"type": "equirectangular"
|
|
}
|
|
}
|
|
},
|
|
"321 Equalized": {
|
|
"equation": "ch3, ch2, ch1",
|
|
"equalize": true
|
|
},
|
|
"Natural Color CSWIR+NIR": {
|
|
"equation": "((0.5*max(ch4,min(ch2,ch1)) + 0.5*ch2)+0.3*ch3)*0.85, ch2, ch1",
|
|
"geo_correct": true,
|
|
"white_balance": true
|
|
},
|
|
"4 Equalized": {
|
|
"equation": "1 - ch4",
|
|
"equalize": true
|
|
},
|
|
"5 Equalized": {
|
|
"equation": "1 - ch5",
|
|
"equalize": true,
|
|
"geo_correct": true,
|
|
"project": {
|
|
"width": 4096,
|
|
"height": 2048,
|
|
"old_algo": true,
|
|
"draw_map": true,
|
|
"equalize": true,
|
|
"config": {
|
|
"type": "equirectangular"
|
|
}
|
|
}
|
|
},
|
|
"6 Equalized": {
|
|
"equation": "1 - ch6",
|
|
"equalize": true
|
|
},
|
|
"654": {
|
|
"equation": "1 - ch6, 1 - ch5, 1 - ch4",
|
|
"equalize": true
|
|
}
|
|
}
|
|
},
|
|
"viirs": {
|
|
"handler": "image_handler",
|
|
"name": "VIIRS",
|
|
"rgb_composites": {
|
|
"I221": {
|
|
"equation": "chi2, chi2, chi1"
|
|
},
|
|
"I321": {
|
|
"equation": "chi3, chi2, chi1"
|
|
},
|
|
"I321/I221 Mix": {
|
|
"equation": "(chi3 * 0.4 + chi2 * 0.6) * 4 - 0.2, chi2 * 4 - 0.2, chi1 * 4 - 0.2"
|
|
},
|
|
"M543 True Color": {
|
|
"equation": "chm5, chm4, chm3",
|
|
"equalize": true
|
|
},
|
|
"DNB Night": {
|
|
"equation": "chdnb * 50 - 0.5"
|
|
},
|
|
"Night Microphysics": {
|
|
"equation": "(1-chi5)-(1-chi4),(1-chi4)-(1-chi3),(1-chi4)",
|
|
"geo_correct": true,
|
|
"equalize": true,
|
|
"white_balance": true
|
|
},
|
|
"Day Microphysics": {
|
|
"equation": "chi1, (1-chi3)^2.5,(1-chi4)",
|
|
"geo_correct": true,
|
|
"equalize": true
|
|
}
|
|
}
|
|
},
|
|
"modis": {
|
|
"handler": "image_handler",
|
|
"name": "MODIS",
|
|
"rgb_composites": {
|
|
"221": {
|
|
"equation": "ch2, ch2, ch1",
|
|
"geo_correct": true,
|
|
"project": {
|
|
"width": 4096,
|
|
"height": 2048,
|
|
"old_algo": true,
|
|
"draw_map": true,
|
|
"equalize": true,
|
|
"config": {
|
|
"type": "equirectangular"
|
|
}
|
|
}
|
|
},
|
|
"143": {
|
|
"equation": "ch1, ch4, ch3",
|
|
"white_balance": true,
|
|
"geo_correct": true,
|
|
"project": {
|
|
"width": 4096,
|
|
"height": 2048,
|
|
"old_algo": true,
|
|
"draw_map": true,
|
|
"equalize": true,
|
|
"config": {
|
|
"type": "equirectangular"
|
|
}
|
|
}
|
|
},
|
|
"221/143 Mix": {
|
|
"equation": "(ch2 + ch1) / 2, (ch2 + ch4) / 2, (ch1 + ch3) / 2",
|
|
"white_balance": true,
|
|
"geo_correct": true
|
|
}
|
|
}
|
|
},
|
|
"mersi1": {
|
|
"handler": "image_handler",
|
|
"name": "MERSI-1",
|
|
"rgb_composites": {
|
|
"321": {
|
|
"equation": "ch3, ch2, ch1",
|
|
"equalize": true,
|
|
"geo_correct": true
|
|
},
|
|
"441": {
|
|
"equation": "ch4, ch4, ch1",
|
|
"geo_correct": true
|
|
}
|
|
}
|
|
},
|
|
"mersi2": {
|
|
"handler": "image_handler",
|
|
"name": "MERSI-2",
|
|
"rgb_composites": {
|
|
"321": {
|
|
"equation": "ch3, ch2, ch1",
|
|
"equalize": true,
|
|
"geo_correct": true
|
|
},
|
|
"3(24)1": {
|
|
"equation": "ch3, (ch2 * 0.43 + ch4 * 0.57), ch1",
|
|
"equalize": true,
|
|
"geo_correct": true
|
|
},
|
|
"17.19.18": {
|
|
"equation": "ch17, ch19, ch18",
|
|
"geo_correct": true
|
|
},
|
|
"9.12.11": {
|
|
"equation": "ch9, ch12, ch11",
|
|
"equalize": true,
|
|
"geo_correct": true
|
|
},
|
|
"441": {
|
|
"equation": "ch4, ch4, ch1",
|
|
"geo_correct": true
|
|
},
|
|
"5 Equalized": {
|
|
"equation": "1.0 - ch5",
|
|
"equalize": true,
|
|
"geo_correct": true
|
|
}
|
|
}
|
|
},
|
|
"mersill": {
|
|
"handler": "image_handler",
|
|
"name": "MERSI-LL",
|
|
"rgb_composites": {
|
|
"338": {
|
|
"equation": "ch3, ch3, ch8",
|
|
"white_balance": true,
|
|
"geo_correct": true
|
|
},
|
|
"IR/DNB Mix": {
|
|
"channels": [
|
|
4,
|
|
10
|
|
],
|
|
"equation": "min(((1 - ch4) - 0.9) * 8, ch10 < 0.03 ? 1 : ch10)",
|
|
"geo_correct": true
|
|
},
|
|
"1 Equalized": {
|
|
"equation": "1.0 - ch1",
|
|
"equalize": true,
|
|
"geo_correct": true
|
|
}
|
|
}
|
|
},
|
|
"mhs": {
|
|
"handler": "image_handler",
|
|
"name": "MHS",
|
|
"rgb_composites": {
|
|
"221": {
|
|
"equation": "ch2, ch2, ch1",
|
|
"equalize": true
|
|
},
|
|
"421": {
|
|
"equation": "ch4, ch2, ch1",
|
|
"equalize": true
|
|
},
|
|
"543": {
|
|
"equation": "ch5, ch4, ch3",
|
|
"equalize": true
|
|
}
|
|
},
|
|
"project_channels": {
|
|
"channels": "all",
|
|
"width": 2048,
|
|
"height": 1024,
|
|
"equalize": true,
|
|
"old_algo": true,
|
|
"draw_map": true,
|
|
"config": {
|
|
"type": "equirectangular"
|
|
}
|
|
}
|
|
},
|
|
"mwhs1": {
|
|
"handler": "image_handler",
|
|
"name": "MHWS-1",
|
|
"rgb_composites": {
|
|
"421": {
|
|
"equation": "ch4, ch2, ch1",
|
|
"equalize": true
|
|
},
|
|
"543": {
|
|
"equation": "ch5, ch4, ch3",
|
|
"equalize": true
|
|
}
|
|
},
|
|
"project_channels": {
|
|
"channels": "all",
|
|
"width": 2048,
|
|
"height": 1024,
|
|
"equalize": true,
|
|
"old_algo": true,
|
|
"draw_map": true,
|
|
"config": {
|
|
"type": "equirectangular"
|
|
}
|
|
}
|
|
},
|
|
"mwhs2": {
|
|
"handler": "image_handler",
|
|
"name": "MHWS-2",
|
|
"rgb_composites": {
|
|
"421": {
|
|
"equation": "ch8, ch12, ch8",
|
|
"equalize": true
|
|
},
|
|
"543": {
|
|
"equation": "ch5, ch4, ch3",
|
|
"equalize": true
|
|
}
|
|
},
|
|
"project_channels": {
|
|
"channels": "all",
|
|
"width": 2048,
|
|
"height": 1024,
|
|
"equalize": true,
|
|
"old_algo": true,
|
|
"draw_map": true,
|
|
"config": {
|
|
"type": "equirectangular"
|
|
}
|
|
}
|
|
},
|
|
"mwts1": {
|
|
"handler": "image_handler",
|
|
"name": "MWTS-1",
|
|
"rgb_composites": {},
|
|
"project_channels": {
|
|
"channels": "all",
|
|
"width": 2048,
|
|
"height": 1024,
|
|
"equalize": true,
|
|
"old_algo": true,
|
|
"draw_map": true,
|
|
"config": {
|
|
"type": "equirectangular"
|
|
}
|
|
}
|
|
},
|
|
"mwts2": {
|
|
"handler": "image_handler",
|
|
"name": "MWTS-2",
|
|
"rgb_composites": {},
|
|
"project_channels": {
|
|
"channels": "all",
|
|
"width": 2048,
|
|
"height": 1024,
|
|
"equalize": true,
|
|
"old_algo": true,
|
|
"draw_map": true,
|
|
"config": {
|
|
"type": "equirectangular"
|
|
}
|
|
}
|
|
},
|
|
"mwts3": {
|
|
"handler": "image_handler",
|
|
"name": "MWTS-3",
|
|
"rgb_composites": {},
|
|
"project_channels": {
|
|
"channels": "all",
|
|
"width": 2048,
|
|
"height": 1024,
|
|
"equalize": true,
|
|
"old_algo": true,
|
|
"draw_map": true,
|
|
"config": {
|
|
"type": "equirectangular"
|
|
}
|
|
}
|
|
},
|
|
"mwri": {
|
|
"handler": "image_handler",
|
|
"name": "MWRI",
|
|
"rgb_composites": {
|
|
"123": {
|
|
"equation": "ch1, ch2, ch3",
|
|
"equalize": true
|
|
}
|
|
},
|
|
"project_channels": {
|
|
"channels": "all",
|
|
"width": 2048,
|
|
"height": 1024,
|
|
"equalize": true,
|
|
"old_algo": true,
|
|
"draw_map": true,
|
|
"config": {
|
|
"type": "equirectangular"
|
|
}
|
|
}
|
|
},
|
|
"atms": {
|
|
"handler": "image_handler",
|
|
"name": "ATMS",
|
|
"rgb_composites": {
|
|
"16-17-18": {
|
|
"equation": "ch16, ch17, ch18",
|
|
"equalize": true
|
|
}
|
|
},
|
|
"project_channels": {
|
|
"channels": "all",
|
|
"width": 2048,
|
|
"height": 1024,
|
|
"equalize": true,
|
|
"old_algo": true,
|
|
"draw_map": true,
|
|
"config": {
|
|
"type": "equirectangular"
|
|
}
|
|
}
|
|
},
|
|
"amsu_a": {
|
|
"handler": "image_handler",
|
|
"name": "AMSU-A",
|
|
"rgb_composites": {
|
|
"221": {
|
|
"equation": "ch2, ch2, ch1",
|
|
"equalize": true
|
|
},
|
|
"421": {
|
|
"equation": "ch4, ch2, ch1",
|
|
"equalize": true
|
|
},
|
|
"543": {
|
|
"equation": "ch5, ch4, ch3",
|
|
"equalize": true
|
|
}
|
|
},
|
|
"project_channels": {
|
|
"channels": "all",
|
|
"width": 2048,
|
|
"height": 1024,
|
|
"equalize": true,
|
|
"old_algo": true,
|
|
"draw_map": true,
|
|
"config": {
|
|
"type": "equirectangular"
|
|
}
|
|
}
|
|
},
|
|
"hirs": {
|
|
"handler": "image_handler",
|
|
"name": "HIRS",
|
|
"rgb_composites": {
|
|
"221": {
|
|
"equation": "ch2, ch2, ch1",
|
|
"equalize": true
|
|
},
|
|
"421": {
|
|
"equation": "ch4, ch2, ch1",
|
|
"equalize": true
|
|
},
|
|
"543": {
|
|
"equation": "ch5, ch4, ch3",
|
|
"equalize": true
|
|
},
|
|
"Clouds Only": {
|
|
"equation": "ch14, ch13, ch9",
|
|
"equalize": true
|
|
}
|
|
}
|
|
},
|
|
"mtvza": {
|
|
"handler": "image_handler",
|
|
"name": "MTVZA",
|
|
"rgb_composites": {
|
|
"Basic False Color": {
|
|
"equation": "ch1, ch8, ch15",
|
|
"equalize": true
|
|
},
|
|
"Clouds Only": {
|
|
"equation": "ch29, ch28, ch1",
|
|
"equalize": true
|
|
}
|
|
}
|
|
},
|
|
"iasi": {
|
|
"handler": "image_handler",
|
|
"name": "IASI",
|
|
"rgb_composites": {}
|
|
},
|
|
"iasi_img": {
|
|
"handler": "image_handler",
|
|
"name": "IASI Imaging",
|
|
"rgb_composites": {
|
|
"Inverted Equalized": {
|
|
"equation": "1 - ch1",
|
|
"equalize": true,
|
|
"geo_correct": true,
|
|
"project": {
|
|
"width": 4096,
|
|
"height": 2048,
|
|
"old_algo": true,
|
|
"draw_map": true,
|
|
"equalize": true,
|
|
"config": {
|
|
"type": "equirectangular"
|
|
}
|
|
}
|
|
}
|
|
}
|
|
},
|
|
"gome": {
|
|
"handler": "image_handler",
|
|
"name": "GOME",
|
|
"rgb_composites": {}
|
|
},
|
|
"sem": {
|
|
"handler": "radiation_handler",
|
|
"name": "SEM",
|
|
"radiation_maps": {
|
|
"ch1": {
|
|
"channel": 1,
|
|
"radius": 5,
|
|
"min": 0,
|
|
"max": 255
|
|
}
|
|
}
|
|
},
|
|
"ocm_oc2": {
|
|
"handler": "image_handler",
|
|
"name": "OCM",
|
|
"rgb_composites": {
|
|
"642": {
|
|
"equation": "ch6, ch4, ch2"
|
|
},
|
|
"654": {
|
|
"equation": "ch6, ch5, ch4"
|
|
},
|
|
"754": {
|
|
"equation": "ch7, ch5, ch4"
|
|
},
|
|
"882": {
|
|
"equation": "ch8, ch8, ch2"
|
|
},
|
|
"662": {
|
|
"equation": "ch6, ch6, ch2"
|
|
}
|
|
}
|
|
},
|
|
"erm": {
|
|
"handler": "image_handler",
|
|
"name": "ERM",
|
|
"rgb_composites": {
|
|
"1 Equalized": {
|
|
"equation": "ch1",
|
|
"equalize": true,
|
|
"project": {
|
|
"width": 2048,
|
|
"height": 1024,
|
|
"old_algo": true,
|
|
"draw_map": true,
|
|
"equalize": true,
|
|
"config": {
|
|
"type": "equirectangular"
|
|
}
|
|
}
|
|
}
|
|
}
|
|
},
|
|
"ascat": {
|
|
"handler": "scatterometer_handler",
|
|
"name": "ASCAT",
|
|
"grayscale_images": {
|
|
"ch1": {
|
|
"channel": 0,
|
|
"min": 0,
|
|
"max": 2576687
|
|
},
|
|
"ch2": {
|
|
"channel": 1,
|
|
"min": 0,
|
|
"max": 2576687
|
|
},
|
|
"ch3": {
|
|
"channel": 2,
|
|
"min": 0,
|
|
"max": 2576687
|
|
},
|
|
"ch4": {
|
|
"channel": 3,
|
|
"min": 0,
|
|
"max": 2576687
|
|
},
|
|
"ch5": {
|
|
"channel": 4,
|
|
"min": 0,
|
|
"max": 2576687
|
|
},
|
|
"ch6": {
|
|
"channel": 5,
|
|
"min": 0,
|
|
"max": 2576687
|
|
}
|
|
},
|
|
"grayscale_projs": {
|
|
"backward": {
|
|
"channel": 0,
|
|
"min": 0,
|
|
"max": 2576687,
|
|
"draw_map": true
|
|
},
|
|
"downward": {
|
|
"channel": 1,
|
|
"min": 0,
|
|
"max": 2576687,
|
|
"draw_map": true
|
|
},
|
|
"forward": {
|
|
"channel": 2,
|
|
"min": 0,
|
|
"max": 2576687,
|
|
"draw_map": true
|
|
}
|
|
}
|
|
},
|
|
"ols": {
|
|
"handler": "image_handler",
|
|
"name": "OLS",
|
|
"rgb_composites": {
|
|
"VIS/IR Mix": {
|
|
"equation": "1-chir, chvis, chvis",
|
|
"equalize": true
|
|
},
|
|
"Equalized IR": {
|
|
"equation": "1-chir",
|
|
"equalize": true
|
|
}
|
|
}
|
|
}
|
|
}
|
|
}
|
|
} |