SDR++ Importing Into Frequency Manager ?

BOBRR

Member
Joined
Dec 15, 2004
Messages
1,536
Reaction score
53
Location
Boston, MA
Hello,

Just started using SDR++ on a mac with an Airspy.

Question Is it possible to import into the programs "Frequency Manager"module
a big list like eibi ?

If importing "any" list into this module is possible, what is
the format to enable it to import ? Hints ?

Thanks,
Bob
 

safe-net

Newbie
Premium Subscriber
Joined
Oct 1, 2025
Messages
1
Reaction score
0
Location
Detroit
@BOBRR
My process for getting frequencies into SDR++ is this:
First find a CSV - I used Chirp to get GMRS frequencies.
Then reduce the csv down to these columns:
- name
- frequency (you will need to convert this so it's in Hertz instead of MHz
- mode (I used 0 - I think that is FMN)
- bandwidth (25000)

Then I used this csv to json converter: CSV to JSON - CSVJSON
However, there's still some work to be done manually to get this to be in the exact format SDR++ wants it.
So this is a little challenging for anyone who is not familiar with JSON, and doesn't have some good skills with multiselection to make the process go faster.
Here's the file that I ended up importing:

JSON:
{"bookmarks":{
  "GMRS 01":{
    "frequency": 462562500,
    "mode": 0,
    "bandwidth": 25000
  },
  "GMRS 02":{
    "frequency": 462587500,
    "mode": 0,
    "bandwidth": 25000
  },
  "GMRS 03":{
    "frequency": 462612500,
    "mode": 0,
    "bandwidth": 25000
  },
  "GMRS 04":{
    "frequency": 462637500,
    "mode": 0,
    "bandwidth": 25000
  },
  "GMRS 05":{
    "frequency": 462662500,
    "mode": 0,
    "bandwidth": 25000
  },
  "GMRS 06":{
    "frequency": 462687500,
    "mode": 0,
    "bandwidth": 25000
  },
  "GMRS 07":{
    "frequency": 462712500,
    "mode": 0,
    "bandwidth": 25000
  },
  "GMRS 08":{
    "frequency": 467562500,
    "mode": 0,
    "bandwidth": 25000
  },
  "GMRS 09":{
    "frequency": 467587500,
    "mode": 0,
    "bandwidth": 25000
  },
  "GMRS 10":{
    "frequency": 467612500,
    "mode": 0,
    "bandwidth": 25000
  },
  "GMRS 11":{
    "frequency": 467637500,
    "mode": 0,
    "bandwidth": 25000
  },
  "GMRS 12":{
    "frequency": 467662500,
    "mode": 0,
    "bandwidth": 25000
  },
  "GMRS 13":{
    "frequency": 467687500,
    "mode": 0,
    "bandwidth": 25000
  },
  "GMRS 14":{
    "frequency": 467712500,
    "mode": 0,
    "bandwidth": 25000
  },
  "GMRS 15":{
    "frequency": 462550000,
    "mode": 0,
    "bandwidth": 25000
  },
  "GMRS 16":{
    "frequency": 462575000,
    "mode": 0,
    "bandwidth": 25000
  },
  "GMRS 17":{
    "frequency": 462600000,
    "mode": 0,
    "bandwidth": 25000
  },
  "GMRS 18":{
    "frequency": 462625000,
    "mode": 0,
    "bandwidth": 25000
  },
  "GMRS 19":{
    "frequency": 462650000,
    "mode": 0,
    "bandwidth": 25000
  },
  "GMRS 20":{
    "frequency": 462675000,
    "mode": 0,
    "bandwidth": 25000
  },
  "GMRS 21":{
    "frequency": 462700000,
    "mode": 0,
    "bandwidth": 25000
  },
  "GMRS 22":{
    "frequency": 462725000,
    "mode": 0,
    "bandwidth": 25000
  }}
}

I could probably make a tool for this.. What frequencies do people usually want to import and where do they get them from?
 
Top