Wideband autonomous SDR analysis engine forked from sdr-visual-suite
25'ten fazla konu seçemezsiniz Konular bir harf veya rakamla başlamalı, kısa çizgiler ('-') içerebilir ve en fazla 35 karakter uzunluğunda olabilir.

53 satır
1.8KB

  1. {
  2. "rules": [
  3. {
  4. "name": "fm_broadcast",
  5. "match": {"min_mhz": 87.5, "max_mhz": 108.0, "min_bw_hz": 50000},
  6. "result": {"mod_type": "WFM", "confidence": 0.99},
  7. "note": "FM Broadcast: >50 kHz BW im UKW-Band ist immer WFM"
  8. },
  9. {
  10. "name": "airband_am",
  11. "match": {"min_mhz": 118.0, "max_mhz": 137.0, "min_bw_hz": 4000, "max_bw_hz": 12000},
  12. "result": {"mod_type": "AM", "confidence": 0.95},
  13. "note": "Airband ist ausschliesslich AM"
  14. },
  15. {
  16. "name": "cw_any_band",
  17. "match": {"min_bw_hz": 0, "max_bw_hz": 500},
  18. "result": {"mod_type": "CW", "confidence": 0.90},
  19. "note": "Unter 500 Hz BW ist CW, egal welches Band"
  20. },
  21. {
  22. "name": "ft8_40m",
  23. "match": {"min_mhz": 7.072, "max_mhz": 7.076, "min_bw_hz": 1500, "max_bw_hz": 3500},
  24. "result": {"mod_type": "FT8", "confidence": 0.95},
  25. "note": "FT8 Dial-Frequenz 40m"
  26. },
  27. {
  28. "name": "ft8_20m",
  29. "match": {"min_mhz": 14.072, "max_mhz": 14.076, "min_bw_hz": 1500, "max_bw_hz": 3500},
  30. "result": {"mod_type": "FT8", "confidence": 0.95},
  31. "note": "FT8 Dial-Frequenz 20m"
  32. },
  33. {
  34. "name": "wspr_40m",
  35. "match": {"min_mhz": 7.0384, "max_mhz": 7.0388, "min_bw_hz": 100, "max_bw_hz": 500},
  36. "result": {"mod_type": "WSPR", "confidence": 0.95},
  37. "note": "WSPR Dial-Frequenz 40m"
  38. },
  39. {
  40. "name": "pmr446_nfm",
  41. "match": {"min_mhz": 446.0, "max_mhz": 446.2, "min_bw_hz": 5000, "max_bw_hz": 15000},
  42. "result": {"mod_type": "NFM", "confidence": 0.92},
  43. "note": "PMR446 ist immer NFM"
  44. },
  45. {
  46. "name": "wfm_wide_any",
  47. "match": {"min_bw_hz": 100000},
  48. "result": {"mod_type": "WFM", "confidence": 0.95},
  49. "note": "Über 100 kHz BW ist fast immer WFM, unabhängig vom Band"
  50. }
  51. ]
  52. }