Add GPS Pseudo-Random Noise (PRN) numbers to database

The author of Look4Sat suggested I request this database feature here.

For GPS satellite constellation, record satellite PRN number in the SatNOGS database.

All NAVSTAR/GPS satellites transmit on the same L1/L2 frequencies, and use Pseudo-Random Noise (PRN) sequences, or Gold codes, to differentiate themselves from one another. PRNs are published here: https://www.navcen.uscg.gov/gps-constellation Another list with NORAD IDs: Global Positioning System (GPS) Operational satellites

2 Likes

Thatā€™s an interesting suggestion!

@pross do you know if thatā€™s something that is applicable to other GNSS constellations?

Yes. Galileo, GLONASS(Russia), BeiDou(China), NavIC (India) and QZSS (Japan) all use CDMA coding with PRN number to identify the unique space vehicle.

With the exception of GLOSNASS, each constellation uses same frequencies across all space vehicles. For GLONASS, each space vehicle transmits on a different frequency (1602 MHz + n Ɨ 0.5625 MHz).

1 Like

Any chance thereā€™s a table of the Glonass FDMA Frequencies organized by satellite? I havenā€™t been able to find oneā€¦

GLONASS status page (in Russian) here: https://glonass-iac.ru/glonass/sostavOG/

There is an XML button on that webpage that points to https://glonass-iac.ru/glonass/sostavOG/glnOGXML.php with entry for each vehicle. e.g.

<SLOT id="1">
<FREQ_CHANNEL>01</FREQ_CHANNEL>
<GLN_NUM>730</GLN_NUM>
<COSMOS_NUM>2456</COSMOS_NUM>
<LAUNCH_DATE>14.12.09</LAUNCH_DATE>
<INPUT_DATE>30.01.10</INPUT_DATE>
<OUTAGE_DATE/>
<FACT_LIFE>165.4</FACT_LIFE>
<NOTES>Š˜ŃŠæŠ¾Š»ŃŒŠ·ŃƒŠµŃ‚ся ŠæŠ¾ Š¦Š</NOTES>
</SLOT>

(I will need to spread by response over multiple replies, as new users of libre space are limited to how many hyperlinks they can include in a postā€¦)

3 Likes

SLOT_ID and COSMOS_NUM fields are unique and can be mapped back to NORAD ID using this table: GPSrChive - Satellites

FREQ_NUM indicates the channel number (in the range [-7,6]). The GLONASS ICD gives a table mapping channel number to L1 and L2 frequency. http://web.archive.org/web/20220205083322/https://russianspacesystems.ru/wp-content/uploads/2016/08/ICD_GLONASS_eng_v5.1.pdf (See ā€œTable 3.1 GLONASS carrier frequencies in L1 and L2 sub-bandsā€).

2 Likes

Finally, despite the FDMA design, an L1/L2 frequency may be shared by multiple satellites. The GLONASS constellation is organised so that satellites sharing the same frequency are always physically separated to avoid interference. More detail on this here: GLONASS Signal Plan - Navipedia

2 Likes

Interesting topic. Would this be better suited for running in between regular observations ? Or is this a storage only proposal ?

If you complete the tutorial with discobot you should be granted less limitations.

Storage only.

As we know, the GNSS constellations are used by hundreds of millions of people daily, and there are dedicated observation facilities for it. So I canā€™t imagine open-source/amateur observation data being useful to many people.

What am I doing? Running direction finding experiments on the L1 channel. I found it frustrating that the popular the sat tracking app, which uses SatNOGS data for freqs, does not show PRN numbers.

Cheers,

For context, Iā€™d like to link to the previously mentioned feature request for Look4Sat here: rt-bishop/Look4Sat#115

As I understand @pross, this thread is about storing publicly known (static) information related to specific satellites into SatNOGS DB, to then be available to display it in SatNOGS DB and third party tools like Look4Sat. Since the PRN number is GNSS-specific (or even GNSS-constellation-specific) I can only see this viable to get realized by developing a way to easily add additional (optional) attributes to satellite or transmitter entries. With the current data model (a static schema which defines all available fields) this is not possible. That said, if there is someone to lead, a revision of the data model is possible [long term goals]. related: Feature request satnogs-db#140: extend the transmitter fields.

So I canā€™t imagine open-source/amateur observation data being useful to many people.

Off-Topic, but related and imo interesting: Have a look at galmon.eu to see another open-source/amateur observation data project and what impact it can have. Talk: How do GPS/Galileo really work & how the galmon.eu monitors all navigation satellites

3 Likes

Thank you for the most comprehensive response!