All Projects → shahar603 → Telemetry Data

shahar603 / Telemetry Data

Licence: unlicense
A collection of telemetry captured from SpaceX Launch Webcasts

Programming Languages

python
139335 projects - #7 most used programming language

Labels

Projects that are alternatives of or similar to Telemetry Data

Cernan
telemetry aggregation and shipping, last up the ladder
Stars: ✭ 306 (+477.36%)
Mutual labels:  telemetry
Countly Sdk Ios
Countly Product Analytics iOS SDK with macOS, watchOS and tvOS support.
Stars: ✭ 585 (+1003.77%)
Mutual labels:  telemetry
Junos monitoring with healthbot
Healthbot configuration examples. Scripts to manage Healthbot. Closed loop automation. Healthbot building blocks description and troubleshooting guide
Stars: ✭ 17 (-67.92%)
Mutual labels:  telemetry
Metrics
A metrics ecosystem for Rust.
Stars: ✭ 328 (+518.87%)
Mutual labels:  telemetry
Gr Satellites
GNU Radio decoders for several Amateur satellites
Stars: ✭ 472 (+790.57%)
Mutual labels:  telemetry
Regtweaks
Registry Tweaks for Windows.
Stars: ✭ 675 (+1173.58%)
Mutual labels:  telemetry
Haystack
Top level repository for Haystack, containing documentation and deployment scripts
Stars: ✭ 261 (+392.45%)
Mutual labels:  telemetry
Privatezilla
👀👮🐢🔥Performs a privacy & security check of Windows 10
Stars: ✭ 1,045 (+1871.7%)
Mutual labels:  telemetry
Sharpapp
💩⭐️🚀A #app with cutting edge technology to #minimize windows-10 telemetry and #maximize privacy plus many more
Stars: ✭ 474 (+794.34%)
Mutual labels:  telemetry
Analytics
Lightweight analytics abstraction layer for tracking page views, custom events, & identifying visitors
Stars: ✭ 814 (+1435.85%)
Mutual labels:  telemetry
Applicationinsights Dotnet
ApplicationInsights-dotnet
Stars: ✭ 367 (+592.45%)
Mutual labels:  telemetry
Nodejs Dashboard
Telemetry dashboard for node.js apps from the terminal!
Stars: ✭ 3,937 (+7328.3%)
Mutual labels:  telemetry
Debotnet
🔥🚀 Debotnet is a tiny portable tool for controlling Windows 10's many privacy-related settings and keep your personal data private.
Stars: ✭ 707 (+1233.96%)
Mutual labels:  telemetry
Applicationinsights Aspnetcore
ASP.NET Core web applications monitoring
Stars: ✭ 306 (+477.36%)
Mutual labels:  telemetry
Llama Archive
Loss & LAtency MAtrix
Stars: ✭ 44 (-16.98%)
Mutual labels:  telemetry
Gpmf Parser
Parser for GPMF™ formatted telemetry data used within GoPro® cameras.
Stars: ✭ 282 (+432.08%)
Mutual labels:  telemetry
Nsablocklist
HOSTS file and research project to block all known NSA / GCHQ / C.I.A. / F.B.I. spying server
Stars: ✭ 630 (+1088.68%)
Mutual labels:  telemetry
Opentelemetry Dotnet
The OpenTelemetry .NET Client
Stars: ✭ 1,037 (+1856.6%)
Mutual labels:  telemetry
Llama
Library for testing and measuring network loss and latency between distributed endpoints.
Stars: ✭ 47 (-11.32%)
Mutual labels:  telemetry
Opentelemetry Js
OpenTelemetry JavaScript Client
Stars: ✭ 700 (+1220.75%)
Mutual labels:  telemetry

Telemetry Data

A collection of telemetry captured from SpaceX Launch Webcasts

The telemtry in this repository has been moved to the Launch Dashboard API.

Structure

The Telemetry is available in three formats: JSON, Excel and JSON Streaming.

Each directory contain the following files:

  • < Launch name > raw - a file contaning the time, velocity and altitude caputred from the webcast in 30 fps. Usage of this file is not recommended due to the mix of telemetry of the first and second stage (see stage1 raw and stage2 raw below).

  • stage1 raw - a file contaning the time (s), velocity (m/s) and altitude (km) caputred from the webcast in 30 fps of the first stage. This file only exists if there is available telemetry.

  • stage2 raw - a file contaning the time (s), velocity (m/s) and altitude (km) caputred from the webcast caputred in 30 fps of the second stage.This file only exists if there is available telemetry.

  • analysed - a file contaning Telemetry calculated using the raw files (more details below).

  • events - a file contaning the time of several specific events (rounded to the nearest second). For example: MECO, Max-Q, Entry Burn Ignition etc.

  • stages - a file contaning the beginning of the webcast telemetry of each stage. This file does not exists in Excel format

Analysed files

The analysed files contain telemetry that can be calculated from the raw data in 1 second interval.

These files contain the following fields:

Time (s), Velocity (m/s), Altitude (km), Vertical Velocity (m/s), Horizontal Velocity (m/s), Acceleration (m/s^2) (with gravity), Downrange Distance (km), Velocity Angle (degrees), Aerodynamic Pressure (N).

The files contain data from T+0 until the telemetry is cut. Each launch has analysis of either stage 1 or 2. The analysed stage can be found in the Launches file in the field analysed_stage.

The Launches.json file

The Launches JSON file contains links to the telemetry files described above.

The flight_number is consistant with the r-spacex database.

The Events.xlsx file

A Spreadsheet that compares telemetry of Specific events between launches (Like MECO altitude or Stage 1 apogee).

Example

This is the JSON Object representing the Orbcomm OG2 launch.

{
        "mission_name": "Orbcomm OG2",
        "flight_number": 25,
        "analysed_stage": 2,
        "Excel": {
            "raw": "https://raw.githubusercontent.com/shahar603/Telemetry-Data/master/Orbcomm%20OG2/Excel/Orbcomm%20OG2%20raw.xlsx",
            "stage1": null,
            "stage2": "https://raw.githubusercontent.com/shahar603/Telemetry-Data/master/Orbcomm%20OG2/Excel/stage2%20raw.xlsx",
            "analysed": "https://raw.githubusercontent.com/shahar603/Telemetry-Data/master/Orbcomm%20OG2/Excel/analysed.xlsx",
            "events": "https://raw.githubusercontent.com/shahar603/Telemetry-Data/master/Orbcomm%20OG2/Excel/events.xlsx"
        },
        "JSON": {
            "raw": "https://raw.githubusercontent.com/shahar603/Telemetry-Data/master/Orbcomm%20OG2/JSON/Orbcomm%20OG2%20raw.json",
            "stage1": null,
            "stage2": "https://raw.githubusercontent.com/shahar603/Telemetry-Data/master/Orbcomm%20OG2/JSON/stage2%20raw.json",
            "analysed": "https://raw.githubusercontent.com/shahar603/Telemetry-Data/master/Orbcomm%20OG2/JSON/analysed.json",
            "events": "https://raw.githubusercontent.com/shahar603/Telemetry-Data/master/Orbcomm%20OG2/JSON/events.json",
            "stages": "https://raw.githubusercontent.com/shahar603/Telemetry-Data/master/Orbcomm%20OG2/JSON/stages.json"
        },
        "JSON STREAMING": {
            "raw": "https://raw.githubusercontent.com/shahar603/Telemetry-Data/master/Orbcomm%20OG2/JSON%20STREAMING/Orbcomm%20OG2%20raw.json",
            "stage1": null,
            "stage2": "https://raw.githubusercontent.com/shahar603/Telemetry-Data/master/Orbcomm%20OG2/JSON%20STREAMING/stage2%20raw.json",
            "analysed": "https://raw.githubusercontent.com/shahar603/Telemetry-Data/master/Orbcomm%20OG2/JSON%20STREAMING/analysed.json",
            "events": "https://raw.githubusercontent.com/shahar603/Telemetry-Data/master/Orbcomm%20OG2/JSON%20STREAMING/events.json",
            "stages": "https://raw.githubusercontent.com/shahar603/Telemetry-Data/master/Orbcomm%20OG2/JSON%20STREAMING/stages.json"
        }
}

Future Developments

  • Setting up a database and domain to host the files.

  • Integration with the r-spacex database

I am not affiliated with SpaceX in any matter. All the telemetry data used is publicly available in SpaceX' YouTube channel.

Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].