{
	"logging": [
		{
			"file_name": "/home/odroid/bolidozor/radio-observer.log",
			"log_level": "debug",
		},
	],

	"project": "bolidozor",
	"project_home_folder": "/home/odroid/bolidozor/station/",
	"storage_hostname": "space.astro.cz",
	"storage_username": "HFN",
	"storage_stationpath": "/storage/bolidozor/",

        "HWversion": "RMDS02E",

        "observatory": [
                {
                        "name": "HFN",
                        "owner.login": "none", // GitHub login
                        "lat": 49.130,
                        "lon": 15.001,
                        "alt": 0.0,
                        "location": "Jindrichuv Hradec",      //City, local name
                }
        ],

	
	"frontend": "tcp_raw",
	"tcp_host": "localhost",
	"tcp_port": 3701,
	"raw_sample_rate": 96000,
	
	"configuration": "default",         // name of configuration which will be selected from following list
	
	"configurations": [
		{
			"key":     "default",       //  configuration identifier
			"factory": "pipeline",
			
			"children": [
				{
					"key":     "backend",
					"factory": "waterfall", // waterfall data will be processed
					
					"bins":    65536,       // number of bins used in FFT calculation
					"overlap": 49152,       // number of ovelaping samples from previous FFT window

					
					// Chunk size of the FFT buffer - this changes the size of the
					// largest continuous block of memory allocated by the backend.
					// Try a smaller value if the program crashes with memory allocation
					// exception.
					// 1048576 = 1024 * 1024
					"buffer_chunk_size": 1048576, 
					
					"origin": "HFN-R1",      // name of detection station
					"username":"HFN",
					
					"iq_gain":        0,    // I/Q correction paremeters currently have not effect
					"iq_phase_shift": 0,
					"transmitter_carrier": 143050000,
					//"transmitter_carrier": 144447000, // Klet beacon

					"metadata_path":  "/home/odroid/bolidozor/station/data/", // path to metadata output directory

					"children": [
						{
							"key":     "recorder",      // identification of method which will procces FFT output
							"factory": "snapshot",      // method which creates continuous snapshots in eqidistant intervals

							"output_dir": "/home/odroid/bolidozor/station/snapshots/",          // absolute path  to data output directory
							"output_type": "snap",       // data output idetifier (this string will be used in file name)
							
							"snapshot_length": 60,       // length of snapshot in seconds
							"low_freq":      26200,      // low (left) snapshot frequency
							"hi_freq":       26800,      // high (rigth image border) snaphot frequency
						},
						{
							"key":     "recorder",       // identification of meteor detector recording
							"factory": "bolid",
							
							"output_dir": "/home/odroid/bolidozor/station/meteors/",          // absolute path  to data output directory
							"output_type": "met",       // data output idetifier (this string will be used in file name)
							"advance_time":     1,      // time interval of data recorded before detection is triggered
							"jitter_time":      2,      // maximal time interval between two separate detection classified as same detection.

							"low_freq": 26200,
							"hi_freq": 26800,

							"low_detect_freq": 26450,   // low  frequency meteor detection border
							"hi_detect_freq":  26550,   // high frequency meteor detection border (in spectrogram)
							"low_noise_freq":  26000,   // low border for spectral frequency intensity reference
							"hi_noise_freq":   26300,   // high border for spectral frequency intensity reference
							
							// time interval between noise entries in the metadata
							// file (seconds), default is 1 hour (3600 seconds)
							"noise_metadata_time": 120,
						},
					],
				},
			],
		},
	],
}


