Understanding the Importance of Real-Time Monitoring
I have identified every Directed Energy Weapon in space that the CCP has. I am currently looking for more. I have also set up real-time monitoring via X at my profile @SteveFavis. This allows you to watch the skies in your area over North America. I am currently updating it as of 2/8/2025. Stay posted on my website or x my @SteveFavis.
It is essential to for more people to monitor these weapons as they could pose a significant threat. With ongoing advancements in technology, understanding the movements of these satellites can help in assessing their potential attack locations in advance. The Chinese communist party seems to only strike in high wind areas (<40mph) and high value real estate areas so far.
Tools You Need for Monitoring
To access legitimate NORAD space satellite telemetry, you need an account at Space-Track.org.
DO NOT USE any other site EXCEPT NORAD's Space-Track.org website. There is satellite COUNTER INTELLIGENCE website's manipulated by China. i.e. a "Rocket Body" is shown on some website's when NORAD declares the object as "UNKNOWN"! Unknown satellites attacked Maui.
Moreover, obtaining a copy of Mathworks Matlab is crucial. Make sure to install the following toolboxes:
Aerospace Toolbox – Required for handling Two-Line Element (TLE) data and computing satellite orbits.
Satellite Communications Toolbox – Needed for the satelliteScenario and satellite functions to simulate satellite motion.
MATLAB Base (Standard Functions) – Used for file handling (dir, fopen, fclose), string processing (regexp, startsWith), and date/time computations (datetime, datestr, years).Navigation Toolbox and Aerospace Toolbox.
Managing TLE Files
Each satellite requires its own .tle file, which is simply ASCII text. These .tle files can decay over time as the CCP zaps and then moves their satellite orbits. Telemetry files need updated every 1 to 2 weeks. Therefore, ensure your data is current to forecast satellite positions accurately within the next week.
In addition, the raw .tle files are straightforward to download from Space-Track.org. Here's an example of what one looks like:
```
CCP-"OBJECT C" NORAD_CAT_ID=61619
1 61619U 24190C 25011.59455502 .00004918 47480-8 20427-3 0 9994
2 61619 34.9959 238.4610 0008204 298.7948 61.1942 15.22834105 12253
```
Sample Code for Setting Up Satellite Monitoring
The following code snippet outlines how to set up satellite monitoring using Matlab.
```matlab
% Define the array of TLE file names
tleFiles = {'60752.txt', '61231.txt', '61237.txt', ...}; % Add more file names as needed
startTime = datetime(2025, 1, 12); % Change dates here
stopTime = datetime(2025, 1, 17); % Change dates here
sampleTime = 60; % Seconds
% Create the satellite scenario
sc = satelliteScenario(startTime, stopTime, sampleTime);
% Array to store satellite objects
sats = [];
% Loop through each TLE file to create satellites
for i = 1:length(tleFiles)
sat = satellite(sc, tleFiles{i});
sats = [sats, sat]; % Append the satellite to the array
end
% If you want to get orbital elements for each satellite
elements = cell(1, length(sats)); % Pre-allocate cell array for efficiency
for i = 1:length(sats)
elements{i} = orbitalElements(sats(i));
end
% Play Satellite Scenario
play(sc);
```
Key Points to Remember
The .tle files are simple and user-friendly. They play a vital role in satellite tracking. The satellites operated by the CCP can often be identified as “LARGE,” “UNKNOWN,” and “PRC” on the Space Track website. Watch out for updates, as CCP is consistently launching more satellites, and they require a significant amount of power just to operate.
With the right tools and methodologies, monitoring these threats becomes feasible. The need for vigilance in space has never been more critical.
Conclusion
In conclusion, monitoring the directed energy weapons in space requires the right tools and knowledge. By following the steps provided above and utilizing platforms like Space-Track.org, you can keep an eye on these developments. It is crucial to stay informed, as this knowledge can potentially safeguard your family as Space Force is most likely not going to alert anyone.
Stay vigilant, and always keep your satellite data updated! It is only accurate about 7 days out, after 7 days you have to update your telemetry data from Space-Track.org. I am currently working on TLE file update automation to keep us all safe. These attacks ARE predicable.
THANK YOU MUCH! -TG