Skip to main content

Python tools to download JSON files from rfi.stanford.edu.

Project description

GNSS Interference Monitoring Data Download Tool

PyPI version License

This repository contains the source code for the Python package <rfi_fileparser>, which provides utilities to download and visualize JSON files from the GNSS Interference Monitoring Website: http://rfi.stanford.edu/. Users can specify a start date, end date, and data type (jamming, spoofing, or dashboard).

Installation

Prerequisites

  • Python 3.8–3.11 installed.
  • pip (included with standard Python installations).

Note: Python 3.12 and newer are currently not supported because the required h3==3.7.6 dependency does not provide compatible Windows wheels.

Setup

pip install rfi-fileparser

Update periodically to get the latest features:

pip install --upgrade rfi-fileparser

Usage

Download JSON data

from rfi_fileparser import downloader

downloader.download_files("2025/04/23", "2025/04/26", "dashboard")
downloader.download_files("2025/04/23", "2025/04/26", "jamming")
downloader.download_files("2025/04/23", "2025/04/26", "spoofing")
  • HTTPS warnings may appear; these are safe and result from bypassing certificate checks.
  • Downloading one week of all data types may take a few minutes.
  • Files are saved under the directory downloaded_json_files/ in the current working path.

Visualize heatmaps

from rfi_fileparser import plot_daily_heatmap, plot_hourly_heatmap, plot_aggregate_heatmap

plot_daily_heatmap("downloaded_json_files", "2025/04/24")
plot_hourly_heatmap("downloaded_json_files", "2025/04/24")
plot_aggregate_heatmap("downloaded_json_files", "2025/03/23", "2025/04/26")
plot_aggregate_heatmap(
    "downloaded_json_files",
    "2025/03/23",
    "2025/04/26",
    lat_range=(24.5, 49.5),
    lon_range=(-125.0, -66.5)
)

Visualize events

from rfi_fileparser import plot_jamming, plot_spoofing

plot_jamming("downloaded_json_files", "2025/04/24")
plot_spoofing("downloaded_json_files", "2025/04/24")

Data Structure

.downloaded_json_files/
├── dashboard
│   ├──general.json
│   └── 2025
│       └── 04
│           └── statistics.json
├── jamming
│   └── 2025
│       └── 04
│           └── 24
│               ├── events.json
│               ├── heatmap.json
│               ├── 0000
│               │   └── heatmap.json
│               ├── 0100
│               │   └── heatmap.json
│               └── ...
└── spoofing
    └── 2025
        └── 04
            └── 24
                ├── beforeAndDuringSpoofing.json
                ├── duringAndAfterSpoofing.json
                ├── events.json
                └── heatmap.json

Data Information

1. jamming/2025/04/24/heatmap.json

→ Daily heatmap data.

2. jamming/2025/04/24/0000/heatmap.json

→ Hourly heatmap data.

  • h3Index: Unique index for each hexagonal cell (H3 system). Use it to get hexgaon boundaries in Python:

    from h3 import h3
    from shapely.geometry import Polygon
    
    def h3_to_polygon(h3_index):
        boundary = h3.h3_to_geo_boundary(h3_index, geo_json=True)
        return Polygon(boundary)
    

    (Functions for this are included in the GitHub repository.)

  • lowQualityCount and totalAircraftCount: Number of low NIC / total aircraft seen within that hexagonal cell.

3. jamming/2025/04/24/event.json

→ All jamming events detected on that day.

  • latitude and longitude: Centroid location of each jamming event.
  • startTime and endTime: Start and end times of each jamming event.

4. spoofing/2025/04/24/beforeAndDuringSpoofing.json

→ For each spoofing event, shows the last known normal position and the first spoofed position observed for each affected flight.

  • beforeSpoofing: Last known normal position
  • spoofedInto: First spoofed position

Example:

{
  "event_1": [
    {
      "beforeSpoofing": {
        "lat": 53.1131,
        "lon": 49.9999,
        "alt": 9098.28,
        "nic": 7,
        "time": 1740858262.297
      },
      "spoofedInto": {
        "lat": 53.102,
        "lon": 49.9545,
        "alt": 9098.28,
        "nic": 0,
        "time": 1740859918.787
      },
    },
    ...
  ],
  ...
}

5. spoofing/2025/04/24/duringAndAfterSpoofing.json

→ For each spoofing event, shows the last spoofed position and the first normal position after recovery.

  • spoofedInto: Last spoofed position
  • afterRecovering: First normal position after spoofing

Example:

{
  "event_1": [
    {
      "spoofedInto": {
        "lat": 53.101,
        "lon": 49.9843,
        "alt": 9098.28,
        "nic": 0,
        "time": 1740867858.763
      },
      "afterRecovering": {
        "lat": 51.7174,
        "lon": 55.0444,
        "alt": 9098.28,
        "nic": 0,
        "time": 1740868558.257
      }
    },
    ...
  ],
  ...
}

6. spoofing/2025/04/24/event.json

→ All spoofing events detected on that day.

  • latitude and longitude: Centroid location of each spoofing event.
  • startTime and endTime: Start and end times of each spoofing event.

7. spoofing/2025/04/24/heatmap.json

→ Daily heatmap of spoofing-affected region.

  • h3Index: Unique index for each hexagonal cell (H3 system). (See usage example above under jamming/2025/04/24/0000/heatmap.json.)

  • spoofedFlightCount: Number of affected aircraft within each cell, based on interpolated true paths.

  • seenAircraftCount: Number of unaffected aircraft in the same cell, based on ADS-B data.

Example:

{
  "event_1": [
    {
      "h3Index": "841f533ffffffff",
      "spoofedFlightCount": 2,
      "seenAircraftCount": 26
    },
    {
      "h3Index": "841f53bffffffff",
      "spoofedFlightCount": 3,
      "seenAircraftCount": 19
    },
    ...
  ],
  ...
}

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

rfi_fileparser-0.6.4.tar.gz (12.5 kB view details)

Uploaded Source

Built Distribution

If you're not sure about the file name format, learn more about wheel file names.

rfi_fileparser-0.6.4-py3-none-any.whl (14.3 kB view details)

Uploaded Python 3

File details

Details for the file rfi_fileparser-0.6.4.tar.gz.

File metadata

  • Download URL: rfi_fileparser-0.6.4.tar.gz
  • Upload date:
  • Size: 12.5 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.1.0 CPython/3.9.13

File hashes

Hashes for rfi_fileparser-0.6.4.tar.gz
Algorithm Hash digest
SHA256 f2acd932a9facbed2328046ee58d56cbea5dbd7b1eb1a80a383ddf1b1f476a33
MD5 6bc842311bf0511891380bde51f4c37b
BLAKE2b-256 98eca157b8622b3f8a1a7ab45da91cf6b5baf8e9180fc16b486e134abfc088c7

See more details on using hashes here.

File details

Details for the file rfi_fileparser-0.6.4-py3-none-any.whl.

File metadata

  • Download URL: rfi_fileparser-0.6.4-py3-none-any.whl
  • Upload date:
  • Size: 14.3 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.1.0 CPython/3.9.13

File hashes

Hashes for rfi_fileparser-0.6.4-py3-none-any.whl
Algorithm Hash digest
SHA256 45741de3f0024890d34fc3a0d5296cfdb266916239ccf64c4665796900341e9d
MD5 66d7a511d141b535d39bd84fca7a1096
BLAKE2b-256 45a5a47545cf2276901af39cce1e1077f868cb5d6ac8dc661ee7fe4c71e1fdcd

See more details on using hashes here.

Supported by

AWS Cloud computing and Security Sponsor Datadog Monitoring Depot Continuous Integration Fastly CDN Google Download Analytics Pingdom Monitoring Sentry Error logging StatusPage Status page