├── .gitmodules ├── README.md ├── artifacts_available.jpg ├── controlled ├── 16a │ ├── create_sqlite_db.sh │ ├── generate_fig_16a.sh │ ├── parse_irtt_json.py │ ├── plot.py │ └── schema.sql ├── 16b │ ├── generate_fig_16b.sh │ ├── parse_iperf.py │ └── plot.py ├── 16c │ ├── generate_fig_16c.sh │ └── plot.py └── README.md ├── gaming ├── README.md ├── compute_delay.py ├── compute_overall_metrics.py ├── inspect_xtime.py ├── plot.sh └── preprocessing.sh ├── mlab_figures ├── .gitignore ├── README.md ├── figures │ ├── .gitignore │ └── .gitkeep ├── geospatial_plot_utils.py ├── iso3.json ├── mlab_concise.ipynb ├── orbit_utils.py ├── plot_utils.py └── scraped_data │ ├── Gateways_PoPs_n_Backbone.kml │ ├── Gateways_PoPs_n_Backbone_2023-10-10.kml │ ├── starlink_countries_2023-10-10.csv │ └── starlink_countries_2024-02-05.csv ├── mno_related ├── README.md └── mno_list_withasn.csv ├── plot_all.sh ├── requirements.txt ├── ripe_atlas_figures ├── README.md └── ripe_atlas_repr.ipynb └── zoom ├── README.md ├── boxplots.py ├── plot.sh ├── plot_xtime_figure.py ├── process_pcap.sh ├── process_pcaps.sh └── zoom_parser.py /.gitmodules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nitindermohan/multifaceted-starlink-performance/HEAD/.gitmodules -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nitindermohan/multifaceted-starlink-performance/HEAD/README.md -------------------------------------------------------------------------------- /artifacts_available.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nitindermohan/multifaceted-starlink-performance/HEAD/artifacts_available.jpg -------------------------------------------------------------------------------- /controlled/16a/create_sqlite_db.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nitindermohan/multifaceted-starlink-performance/HEAD/controlled/16a/create_sqlite_db.sh -------------------------------------------------------------------------------- /controlled/16a/generate_fig_16a.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nitindermohan/multifaceted-starlink-performance/HEAD/controlled/16a/generate_fig_16a.sh -------------------------------------------------------------------------------- /controlled/16a/parse_irtt_json.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nitindermohan/multifaceted-starlink-performance/HEAD/controlled/16a/parse_irtt_json.py -------------------------------------------------------------------------------- /controlled/16a/plot.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nitindermohan/multifaceted-starlink-performance/HEAD/controlled/16a/plot.py -------------------------------------------------------------------------------- /controlled/16a/schema.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nitindermohan/multifaceted-starlink-performance/HEAD/controlled/16a/schema.sql -------------------------------------------------------------------------------- /controlled/16b/generate_fig_16b.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nitindermohan/multifaceted-starlink-performance/HEAD/controlled/16b/generate_fig_16b.sh -------------------------------------------------------------------------------- /controlled/16b/parse_iperf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nitindermohan/multifaceted-starlink-performance/HEAD/controlled/16b/parse_iperf.py -------------------------------------------------------------------------------- /controlled/16b/plot.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nitindermohan/multifaceted-starlink-performance/HEAD/controlled/16b/plot.py -------------------------------------------------------------------------------- /controlled/16c/generate_fig_16c.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nitindermohan/multifaceted-starlink-performance/HEAD/controlled/16c/generate_fig_16c.sh -------------------------------------------------------------------------------- /controlled/16c/plot.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nitindermohan/multifaceted-starlink-performance/HEAD/controlled/16c/plot.py -------------------------------------------------------------------------------- /controlled/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nitindermohan/multifaceted-starlink-performance/HEAD/controlled/README.md -------------------------------------------------------------------------------- /gaming/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nitindermohan/multifaceted-starlink-performance/HEAD/gaming/README.md -------------------------------------------------------------------------------- /gaming/compute_delay.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nitindermohan/multifaceted-starlink-performance/HEAD/gaming/compute_delay.py -------------------------------------------------------------------------------- /gaming/compute_overall_metrics.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nitindermohan/multifaceted-starlink-performance/HEAD/gaming/compute_overall_metrics.py -------------------------------------------------------------------------------- /gaming/inspect_xtime.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nitindermohan/multifaceted-starlink-performance/HEAD/gaming/inspect_xtime.py -------------------------------------------------------------------------------- /gaming/plot.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nitindermohan/multifaceted-starlink-performance/HEAD/gaming/plot.sh -------------------------------------------------------------------------------- /gaming/preprocessing.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nitindermohan/multifaceted-starlink-performance/HEAD/gaming/preprocessing.sh -------------------------------------------------------------------------------- /mlab_figures/.gitignore: -------------------------------------------------------------------------------- 1 | __pycache__ 2 | *.html 3 | -------------------------------------------------------------------------------- /mlab_figures/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nitindermohan/multifaceted-starlink-performance/HEAD/mlab_figures/README.md -------------------------------------------------------------------------------- /mlab_figures/figures/.gitignore: -------------------------------------------------------------------------------- 1 | *.pdf 2 | *.svg 3 | -------------------------------------------------------------------------------- /mlab_figures/figures/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /mlab_figures/geospatial_plot_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nitindermohan/multifaceted-starlink-performance/HEAD/mlab_figures/geospatial_plot_utils.py -------------------------------------------------------------------------------- /mlab_figures/iso3.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nitindermohan/multifaceted-starlink-performance/HEAD/mlab_figures/iso3.json -------------------------------------------------------------------------------- /mlab_figures/mlab_concise.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nitindermohan/multifaceted-starlink-performance/HEAD/mlab_figures/mlab_concise.ipynb -------------------------------------------------------------------------------- /mlab_figures/orbit_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nitindermohan/multifaceted-starlink-performance/HEAD/mlab_figures/orbit_utils.py -------------------------------------------------------------------------------- /mlab_figures/plot_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nitindermohan/multifaceted-starlink-performance/HEAD/mlab_figures/plot_utils.py -------------------------------------------------------------------------------- /mlab_figures/scraped_data/Gateways_PoPs_n_Backbone.kml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nitindermohan/multifaceted-starlink-performance/HEAD/mlab_figures/scraped_data/Gateways_PoPs_n_Backbone.kml -------------------------------------------------------------------------------- /mlab_figures/scraped_data/Gateways_PoPs_n_Backbone_2023-10-10.kml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nitindermohan/multifaceted-starlink-performance/HEAD/mlab_figures/scraped_data/Gateways_PoPs_n_Backbone_2023-10-10.kml -------------------------------------------------------------------------------- /mlab_figures/scraped_data/starlink_countries_2023-10-10.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nitindermohan/multifaceted-starlink-performance/HEAD/mlab_figures/scraped_data/starlink_countries_2023-10-10.csv -------------------------------------------------------------------------------- /mlab_figures/scraped_data/starlink_countries_2024-02-05.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nitindermohan/multifaceted-starlink-performance/HEAD/mlab_figures/scraped_data/starlink_countries_2024-02-05.csv -------------------------------------------------------------------------------- /mno_related/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nitindermohan/multifaceted-starlink-performance/HEAD/mno_related/README.md -------------------------------------------------------------------------------- /mno_related/mno_list_withasn.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nitindermohan/multifaceted-starlink-performance/HEAD/mno_related/mno_list_withasn.csv -------------------------------------------------------------------------------- /plot_all.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nitindermohan/multifaceted-starlink-performance/HEAD/plot_all.sh -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nitindermohan/multifaceted-starlink-performance/HEAD/requirements.txt -------------------------------------------------------------------------------- /ripe_atlas_figures/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nitindermohan/multifaceted-starlink-performance/HEAD/ripe_atlas_figures/README.md -------------------------------------------------------------------------------- /ripe_atlas_figures/ripe_atlas_repr.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nitindermohan/multifaceted-starlink-performance/HEAD/ripe_atlas_figures/ripe_atlas_repr.ipynb -------------------------------------------------------------------------------- /zoom/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nitindermohan/multifaceted-starlink-performance/HEAD/zoom/README.md -------------------------------------------------------------------------------- /zoom/boxplots.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nitindermohan/multifaceted-starlink-performance/HEAD/zoom/boxplots.py -------------------------------------------------------------------------------- /zoom/plot.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nitindermohan/multifaceted-starlink-performance/HEAD/zoom/plot.sh -------------------------------------------------------------------------------- /zoom/plot_xtime_figure.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nitindermohan/multifaceted-starlink-performance/HEAD/zoom/plot_xtime_figure.py -------------------------------------------------------------------------------- /zoom/process_pcap.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nitindermohan/multifaceted-starlink-performance/HEAD/zoom/process_pcap.sh -------------------------------------------------------------------------------- /zoom/process_pcaps.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nitindermohan/multifaceted-starlink-performance/HEAD/zoom/process_pcaps.sh -------------------------------------------------------------------------------- /zoom/zoom_parser.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nitindermohan/multifaceted-starlink-performance/HEAD/zoom/zoom_parser.py --------------------------------------------------------------------------------