SlideShare ist ein Scribd-Unternehmen logo
1 von 31
Alaa Osama Awad Mahmoud
• Teacher Assistant faculty of Science
Helwan university
• SERG Member
Satellite Orbit Prediction
Based on Recurrent Neural
Network using Two Line
Elements
Advanced Intelligent Systems for Sustainable Development (AISSD 2021) 20-22 August 2021
Advanced Intelligent Systems for Sustainable Development (AISSD 2021) 20-22 August 2021
Agenda
1. Introduction.
2. Problem Statement.
3. Methods of Satellite Prediction.
4. Two Line Element dataset Format.
5. How to use Machine Learning Techniques to Predict the Satellite Orbit?
6. Related Work
Advanced Intelligent Systems for Sustainable Development (AISSD 2021) 20-22 August 2021
Satellite
• a satellite is an object that has been intentionally placed into orbit. These objects are
called artificial satellites to distinguish them from natural satellites such as Earth's Moon.
• satellite used for (observation , Telecommunication , meteorology , …., etc )
Advanced Intelligent Systems for Sustainable Development (AISSD 2021) 20-22 August 2021
Satellites Orbit
• A satellite orbit follows the Kepler orbit, which is explained by the six Keplerian
elements.
• Predictions of satellite orbits is a significant research issue for avoiding collisions in
space.
Advanced Intelligent Systems for Sustainable Development (AISSD 2021) 20-22 August 2021
Satellite Collision
• Satellite collision events have occurred due to incorrect predictions and false alarms.
Advanced Intelligent Systems for Sustainable Development (AISSD 2021) 20-22 August 2021
• The first two satellites
collision occurred in
February 2009
• collision of a U.S.
Iridium communications
satellite and a Russian
Cosmos 2251
communication satellite
Advanced Intelligent Systems for Sustainable Development (AISSD 2021) 20-22 August 2021
Space Debris
also known as ( space junk, space pollution, space waste, space trash,
or space garbage)
Advanced Intelligent Systems for Sustainable Development (AISSD 2021) 20-22 August 2021
Satellite orbit prediction
• Efficient and high-precision orbit
prediction is increasingly crucial to
enhance the awareness of the space
situation.
• collision avoidance, by describing a
method that contributes to achieving
a requisite increase in orbit
prediction accuracy.
• Previously using physics
• now using machine learning
Satellite orbit prediction Methods
1. Laser
Advanced Intelligent Systems for Sustainable Development (AISSD 2021) 20-22 August 2021
2. GPS Satellite
Advanced Intelligent Systems for Sustainable Development (AISSD 2021) 20-22 August 2021
Two Line Elements
Advanced Intelligent Systems for Sustainable Development (AISSD 2021) 20-22 August 2021
3. Two Line Elements
Advanced Intelligent Systems for Sustainable Development (AISSD 2021) 20-22 August 2021
Two-Line Elements
TLE Set Format is a data format used to transmit one coded set of orbital elements
that perfectly describe the satellite’s orbit around Earth.
The method of orbit prediction by combining multiple TLE can achieve the purpose of
improving orbit predication precision
TLE computed by NORAD (North American Aerospace Defense Command) & NASA
(National Aeronautics and Space Administration) using Radar
Advanced Intelligent Systems for Sustainable Development (AISSD 2021) 20-22 August 2021
Ballistic
coefficient
Drag term or
radiation pressure
coefficient
Classification
International Designator
launch year , launch day and the piece of launch
EX:- "A" shows it was the first object resulting from this
launch.
Note:-
• The final two characters in the second
derivative of mean motion and B* indicate an
applicable power of 10. EX:- in B* value the -4
corresponds to 10^-4.
• The second derivative of mean motion, B*,
and eccentricity all have an assumed leading
decimal before the first digit.
Epoch Date
The number of day , hour ,minutes and
seconds passed in a particular year
Ballistic coefficient
Is the daily rate of change in the number of revs
the object completes each day divided by 2 units (
revs / day )
Second Derivative of Mean Motion
Is a second order drag term in the SGP4 predictor
used to model terminal decay units (revs / day ^3)
It measures the second time derivative in daily
mean motion divided by 6
Bstar Drag term
• The parameter is another drag term in the SGP4
predictor units (radii^-1)
• The true value of B* is unknown for objects in orbit;
instead the dynamics model adjusts the B* term as
necessary to account for non-linear changes in mean
anomaly.
• B* has units of inverse Earth radii.
Advanced Intelligent Systems for Sustainable Development (AISSD 2021) 20-22 August 2021
Inclination (degrees)
The angle between the equator and the orbit
plane.( i )
Right Ascension of the Ascending Node (degrees)
The angle between vernal equinox and the point where the
orbit crosses the equatorial plane (going north).( Ω )
Eccentricity
A constant defining the shape of the orbit (0=circular,
Less than 1=elliptical ).(𝑒 )
Argument of Perigee (degrees)
The angle between the ascending node and the orbit's point
of closest approach to the earth (perigee).(𝜔 )
Mean Anomaly (degrees)
• The angle, measured from perigee, of the satellite location in the orbit
referenced to a circular orbit with radius equal to the semi-major axis.(M)
• is the fraction of an elliptical orbit's period that has elapsed since the orbiting
body passed periapsis
Mean Motion ( rev / day )
The value is the mean number of orbits per day the object
completes.(n)
Revolution Number
• The orbit number at Epoch Time.
• The orbit revolution number normally increments each time the object passes the ascending node
in orbit; however, the value occasionally does not increment correctly, erroneously failing to
increment.
Revolution
number at
epoch
Advanced Intelligent Systems for Sustainable Development (AISSD 2021) 20-22 August 2021
Orbital Elements
a – semi-major axis
this element defines the size of the orbit
e – eccentricity
this element gives the shape of the orbit
i – inclination
this element represents the orientation of
the orbit with respect to Earth’s equator
Ω – longitude of the ascending node
this element represents the location of the
ascending and descending orbit locations with
respect to the Earth’s equatorial plane
ω – argument of perigee
this element defines where the low point, called
perigee, of the orbit is with respect to the Earth’s
surface
𝜈 – true anomaly at epoch
• this element notes where the satellite is within the orbit with
respect to the perigee
• The angle define the position of the satellite on the orbit which
continually increases with time
Advanced Intelligent Systems for Sustainable Development (AISSD 2021) 20-22 August 2021
Machine
Learning is
using Data to
Answer the
Question
Advanced Intelligent Systems for Sustainable Development (AISSD 2021) 20-22 August 2021
Artificial
Intelligence
Intelligence
machines that think
and act like human
Machine
Learning
is an application
provides systems the
ability to
automatically learn
and improve from
experience without
being explicitly
programmed.
Deep
Learning
Machine think like
human brains using
artificial neural
networks
Advanced Intelligent Systems for Sustainable Development (AISSD 2021) 20-22 August 2021
• RNNs are a type of ANN architecture that uses iterative function loops to
store information, inspired by the cyclical connectivity of neurons in the
brain.
Recurrent Neural Network(RNN)
• RNNs are particularly useful for dealing with sequential data because they
consider not only the current input but also the previous input, allowing
them to remember what happened previously.
• RNNs learn from training data and are distinguished by their "memory,"
which allows them to affect current input and output by using information
from previous inputs.
Advanced Intelligent Systems for Sustainable Development (AISSD 2021) 20-22 August 2021
Satellite Orbit Prediction Using
Machine Learning
Using Two Line Element Data Format and the core data of the satellite orbit includes six
integral constants, namely six elements of the Kepler orbit:-
1. semi-major orbit axis a
2. the orbital eccentricity e
3. the angle between the orbital plane of the satellite and the equatorial plane i
4. Equatorial longitude Ω
5. Orbital perigee polar angle ω
6. satellite orbital ascending node N
Advanced Intelligent Systems for Sustainable Development (AISSD 2021) 20-22 August 2021
Translate angels to position
𝒂𝑰
𝒂𝑱
𝒂𝑲
= 𝑻𝑴
𝒂𝑷
𝒂𝑸
𝒂𝑾
Where ( TM ) is the transformation matrix
𝑻𝑴 =
𝒄𝒐𝒔𝝎 𝒄𝒐𝒔𝛺 − 𝒔𝒊𝒏𝝎 𝒔𝒊𝒏𝛺 𝒄𝒐𝒔𝑰 −𝒔𝒊𝒏𝝎 𝒄𝒐𝒔𝛺 − 𝒄𝒐𝒔𝝎 𝒔𝒊𝒏𝛺 𝒄𝒐𝒔𝑰 𝒔𝒊𝒏𝛺 𝒔𝒊𝒏𝑰
𝒄𝒐𝒔𝝎 𝒔𝒊𝒏𝛺 + 𝒔𝒊𝒏𝝎 𝒄𝒐𝒔𝛺 𝒄𝒐𝒔𝑰 −𝒔𝒊𝒏𝝎 𝒔𝒊𝒏𝛺 + 𝒄𝒐𝒔𝝎 𝒄𝒐𝒔𝛺 𝒄𝒐𝒔𝑰 −𝒄𝒐𝒔𝛺 𝒔𝒊𝒏𝑰
𝒔𝒊𝒏𝝎 𝒔𝒊𝒏𝑰 𝒄𝒐𝒔𝝎 𝒔𝒊𝒏𝑰 𝒄𝒐𝒔𝑰
Advanced Intelligent Systems for Sustainable Development (AISSD 2021) 20-22 August 2021
𝒓𝑷𝑸𝑾 =
𝒓 𝒄𝒐𝒔 𝜈
𝒓 𝒔𝒊𝒏 𝜈
𝟎
r =
𝒂 𝟏 − 𝒆𝟐
𝟏+𝒆 𝒄𝒐𝒔 𝜈
Advanced Intelligent Systems for Sustainable Development (AISSD 2021) 20-22 August 2021
𝝂 = 𝒎 + (𝟐𝒆 − 𝟏 𝟒 𝒆 𝟑 )𝒔𝒊𝒏(𝒎) + 𝟒 𝟓 𝒆 𝟐 𝒔𝒊
𝒏(𝟐𝒎) + 𝟏𝟑 𝟏𝟐 𝒆 𝟑 𝒔𝒊𝒏(𝟑𝒎)
Advanced Intelligent Systems for Sustainable Development (AISSD 2021) 20-22 August 2021
𝑬 = 𝒎 + ( 𝒆 − 𝟏 𝟖 𝒆 𝟑 ) 𝒔𝒊𝒏(𝒎) +
𝟏 𝟐 𝒆 𝟐 (𝐬𝐢𝐧 𝐦) 𝟐 + 𝟑 𝟖 𝒆 𝟑 𝒔𝒊𝒏(
𝟑𝒎)
Advanced Intelligent Systems for Sustainable Development (AISSD 2021) 20-22 August 2021
Related Work
Research on Satellite Orbit Prediction
Based on Neural Network Algorithm
June 22–24, 2019
Advanced Intelligent Systems for Sustainable Development (AISSD 2021) 20-22 August 2021
• The experiment is based on the Keras library under the TensorFlow
framework and the Sklearn machine learning library.
Advanced Intelligent Systems for Sustainable Development (AISSD 2021) 20-22 August 2021
Data are added to construct a TLE forecast eight
for TLE data prediction. The elements are as
follows:
The LSTM (Long-term and short-term
memory networks )- based prediction model
consists of four parts, as shown in the figure :
(1) Input layer: Eight element data of TLE orbit
prediction.
(2) LSTM layer: Obtain high-dimensional features
of the eight-element data of TLE orbit prediction.
(3) Full-connect layer: Integrate the acquired high-
dimensional features.
(4) Output layer: Calculate the predicted value of
the target element and outputs it.
Advanced Intelligent Systems for Sustainable Development (AISSD 2021) 20-22 August 2021
Research Objective
we will analyze the current progress
of applying satellite orbit prediction
deep learning techniques to enhance
satellite orbit prediction accuracy
and avoid the satellite collision
Advanced Intelligent Systems for Sustainable Development (AISSD 2021) 20-22 August 2021
Satellite Total
Element of
data
Training
data
Testing
data
Semi
major axis
sat
IRIDIUM 7
24793
14755 80% 20% a =7155
km
Data
Advanced Intelligent Systems for Sustainable Development (AISSD 2021) 20-22 August 2021
Acknowledgment
Advanced Intelligent Systems for Sustainable Development (AISSD 2021) 20-22 August 2021
Advanced Intelligent Systems for Sustainable Development (AISSD 2021) 20-22 August 2021

Weitere ähnliche Inhalte

Was ist angesagt?

Design & Implementation of a Cube Satellite
Design & Implementation of a Cube SatelliteDesign & Implementation of a Cube Satellite
Design & Implementation of a Cube Satellite
Md. Saifur Rahman
 
Radar communication 2
Radar communication 2Radar communication 2
Radar communication 2
Ashwani Kumar
 

Was ist angesagt? (20)

Introduction to satellite communication
Introduction to satellite communicationIntroduction to satellite communication
Introduction to satellite communication
 
GIS application in Defense
GIS application in DefenseGIS application in Defense
GIS application in Defense
 
NISAR NASA-ISRO Synthetic Aperture Radar (NISAR) Mission Science Users Handbook
NISAR NASA-ISRO Synthetic Aperture Radar (NISAR)  Mission Science Users HandbookNISAR NASA-ISRO Synthetic Aperture Radar (NISAR)  Mission Science Users Handbook
NISAR NASA-ISRO Synthetic Aperture Radar (NISAR) Mission Science Users Handbook
 
Satellite communication
Satellite communicationSatellite communication
Satellite communication
 
application of remote sensing in defence forces
application of remote sensing in defence forcesapplication of remote sensing in defence forces
application of remote sensing in defence forces
 
Lunar Laser Ranging
Lunar Laser RangingLunar Laser Ranging
Lunar Laser Ranging
 
Satellite Power Station
Satellite Power StationSatellite Power Station
Satellite Power Station
 
Sattelite communication
Sattelite communicationSattelite communication
Sattelite communication
 
Design & Implementation of a Cube Satellite
Design & Implementation of a Cube SatelliteDesign & Implementation of a Cube Satellite
Design & Implementation of a Cube Satellite
 
Satellite
SatelliteSatellite
Satellite
 
Radar
RadarRadar
Radar
 
Satellite communication by abhishek mahajan
Satellite communication by abhishek mahajanSatellite communication by abhishek mahajan
Satellite communication by abhishek mahajan
 
Global positioning system ppt
Global positioning system pptGlobal positioning system ppt
Global positioning system ppt
 
Satellite communication and it's future
Satellite communication and it's futureSatellite communication and it's future
Satellite communication and it's future
 
GNSS
GNSSGNSS
GNSS
 
Autonomous underwater vehicles
Autonomous underwater vehiclesAutonomous underwater vehicles
Autonomous underwater vehicles
 
GPS introduction
GPS introductionGPS introduction
GPS introduction
 
Radar communication 2
Radar communication 2Radar communication 2
Radar communication 2
 
International Space Station Reference Guide
International Space Station Reference GuideInternational Space Station Reference Guide
International Space Station Reference Guide
 
The GPS/GNSS Signal (2)
The GPS/GNSS Signal (2)The GPS/GNSS Signal (2)
The GPS/GNSS Signal (2)
 

Ähnlich wie Satellite orbit prediction based on recurrent neural network using two line elements

Ähnlich wie Satellite orbit prediction based on recurrent neural network using two line elements (20)

Solar resource assessment
Solar resource assessmentSolar resource assessment
Solar resource assessment
 
IRJET - Intelligence Satellite Tracking System
IRJET - Intelligence Satellite Tracking SystemIRJET - Intelligence Satellite Tracking System
IRJET - Intelligence Satellite Tracking System
 
SAR Remote Sensing for Urban Damage Assessment for Tehran
SAR Remote Sensing for Urban Damage Assessment for TehranSAR Remote Sensing for Urban Damage Assessment for Tehran
SAR Remote Sensing for Urban Damage Assessment for Tehran
 
Auto-Stellar
Auto-StellarAuto-Stellar
Auto-Stellar
 
ExoSGAN and ExoACGAN: Exoplanet Detection using Adversarial Training Algorithms
ExoSGAN and ExoACGAN: Exoplanet Detection using Adversarial Training AlgorithmsExoSGAN and ExoACGAN: Exoplanet Detection using Adversarial Training Algorithms
ExoSGAN and ExoACGAN: Exoplanet Detection using Adversarial Training Algorithms
 
A cost-effective GPS-aided autonomous guided vehicle for global path planning
A cost-effective GPS-aided autonomous guided vehicle for global path planningA cost-effective GPS-aided autonomous guided vehicle for global path planning
A cost-effective GPS-aided autonomous guided vehicle for global path planning
 
Cnn acuracia remotesensing-08-00329
Cnn acuracia remotesensing-08-00329Cnn acuracia remotesensing-08-00329
Cnn acuracia remotesensing-08-00329
 
IJSRED-V2I5P46
IJSRED-V2I5P46IJSRED-V2I5P46
IJSRED-V2I5P46
 
Use of Micro Satellites for Global Connectivity, High Speed Transmission & Da...
Use of Micro Satellites for Global Connectivity, High Speed Transmission & Da...Use of Micro Satellites for Global Connectivity, High Speed Transmission & Da...
Use of Micro Satellites for Global Connectivity, High Speed Transmission & Da...
 
Prediction of nodes mobility in 3-D space
Prediction of nodes mobility in 3-D space Prediction of nodes mobility in 3-D space
Prediction of nodes mobility in 3-D space
 
AI4Space –Artificial Intelligence at ISTA - Hülsmann & Haser
AI4Space –Artificial Intelligence at ISTA - Hülsmann & HaserAI4Space –Artificial Intelligence at ISTA - Hülsmann & Haser
AI4Space –Artificial Intelligence at ISTA - Hülsmann & Haser
 
A Review on: Spatial Image Processing and Wireless Sensor Network Design to I...
A Review on: Spatial Image Processing and Wireless Sensor Network Design to I...A Review on: Spatial Image Processing and Wireless Sensor Network Design to I...
A Review on: Spatial Image Processing and Wireless Sensor Network Design to I...
 
Satellite Image Classification and Analysis using Machine Learning with ISRO ...
Satellite Image Classification and Analysis using Machine Learning with ISRO ...Satellite Image Classification and Analysis using Machine Learning with ISRO ...
Satellite Image Classification and Analysis using Machine Learning with ISRO ...
 
Prediction Based Moving Object Tracking in Wireless Sensor Network
Prediction Based Moving Object Tracking in Wireless Sensor NetworkPrediction Based Moving Object Tracking in Wireless Sensor Network
Prediction Based Moving Object Tracking in Wireless Sensor Network
 
Localization based range map stitching in wireless sensor network under non l...
Localization based range map stitching in wireless sensor network under non l...Localization based range map stitching in wireless sensor network under non l...
Localization based range map stitching in wireless sensor network under non l...
 
Different GNSS (Global Navigation Satellite System) Receiver’s combination an...
Different GNSS (Global Navigation Satellite System) Receiver’s combination an...Different GNSS (Global Navigation Satellite System) Receiver’s combination an...
Different GNSS (Global Navigation Satellite System) Receiver’s combination an...
 
Geographic Information System unit 1
Geographic Information System   unit 1Geographic Information System   unit 1
Geographic Information System unit 1
 
Fundamentals of GIS
Fundamentals of GISFundamentals of GIS
Fundamentals of GIS
 
SIMPLIFIED SAR SIMULATION FOR REMOTE SENSING URBAN DAMAGE ASSESSMENT
SIMPLIFIED SAR SIMULATION FOR REMOTE SENSING URBAN DAMAGE ASSESSMENTSIMPLIFIED SAR SIMULATION FOR REMOTE SENSING URBAN DAMAGE ASSESSMENT
SIMPLIFIED SAR SIMULATION FOR REMOTE SENSING URBAN DAMAGE ASSESSMENT
 
Astroimagej Image Processing And Photometric Extraction For Ultra-Precise As...
Astroimagej  Image Processing And Photometric Extraction For Ultra-Precise As...Astroimagej  Image Processing And Photometric Extraction For Ultra-Precise As...
Astroimagej Image Processing And Photometric Extraction For Ultra-Precise As...
 

Mehr von Aboul Ella Hassanien

الذكاء الأصطناعى المسؤول ومستقبل الأمن المناخى وانعكاساته الاجتماعية والأمنية
الذكاء الأصطناعى المسؤول ومستقبل  الأمن المناخى وانعكاساته الاجتماعية والأمنيةالذكاء الأصطناعى المسؤول ومستقبل  الأمن المناخى وانعكاساته الاجتماعية والأمنية
الذكاء الأصطناعى المسؤول ومستقبل الأمن المناخى وانعكاساته الاجتماعية والأمنية
Aboul Ella Hassanien
 
الذكاء الأصطناعى المسؤول ومستقبل الأمن المناخى وانعكاساته الاجتماعية والأمنية
الذكاء الأصطناعى المسؤول ومستقبل  الأمن المناخى وانعكاساته الاجتماعية والأمنيةالذكاء الأصطناعى المسؤول ومستقبل  الأمن المناخى وانعكاساته الاجتماعية والأمنية
الذكاء الأصطناعى المسؤول ومستقبل الأمن المناخى وانعكاساته الاجتماعية والأمنية
Aboul Ella Hassanien
 

Mehr von Aboul Ella Hassanien (20)

الأطر والمبادئ الاخلاقية للذكاء الاصطناعي التوليدى.pdf
الأطر والمبادئ الاخلاقية  للذكاء الاصطناعي التوليدى.pdfالأطر والمبادئ الاخلاقية  للذكاء الاصطناعي التوليدى.pdf
الأطر والمبادئ الاخلاقية للذكاء الاصطناعي التوليدى.pdf
 
دعوة للاستخدام المسؤول للذكاء الاصطناعي التوليدي في الأوساط الأكاديمية المعر...
دعوة للاستخدام المسؤول للذكاء الاصطناعي التوليدي في الأوساط الأكاديمية  المعر...دعوة للاستخدام المسؤول للذكاء الاصطناعي التوليدي في الأوساط الأكاديمية  المعر...
دعوة للاستخدام المسؤول للذكاء الاصطناعي التوليدي في الأوساط الأكاديمية المعر...
 
حوار مع الأستاذ الدكتور أبو العلا عطيفى حسنين - تقنية الذكاء الاصطناعي تحول م...
حوار مع الأستاذ الدكتور أبو العلا عطيفى حسنين - تقنية الذكاء الاصطناعي تحول م...حوار مع الأستاذ الدكتور أبو العلا عطيفى حسنين - تقنية الذكاء الاصطناعي تحول م...
حوار مع الأستاذ الدكتور أبو العلا عطيفى حسنين - تقنية الذكاء الاصطناعي تحول م...
 
الطاقة من الفضاء: علماء ينقلون الطاقة الشمسية إلى الأرض عن طريق الفضاء لأول م...
الطاقة من الفضاء: علماء ينقلون الطاقة الشمسية إلى الأرض عن طريق الفضاء لأول م...الطاقة من الفضاء: علماء ينقلون الطاقة الشمسية إلى الأرض عن طريق الفضاء لأول م...
الطاقة من الفضاء: علماء ينقلون الطاقة الشمسية إلى الأرض عن طريق الفضاء لأول م...
 
Intelligent Avatars in the Metaverse.pptx
Intelligent Avatars in the Metaverse.pptxIntelligent Avatars in the Metaverse.pptx
Intelligent Avatars in the Metaverse.pptx
 
دليل البحث العلمى .pdf
دليل البحث العلمى .pdfدليل البحث العلمى .pdf
دليل البحث العلمى .pdf
 
SRGE photo.pdf
SRGE photo.pdfSRGE photo.pdf
SRGE photo.pdf
 
الذكاء الإصطناعى وافاقه فى التعليم على مستوى الوطن العربى: مستوى السياسات
الذكاء الإصطناعى وافاقه فى التعليم على مستوى الوطن العربى: مستوى السياسات الذكاء الإصطناعى وافاقه فى التعليم على مستوى الوطن العربى: مستوى السياسات
الذكاء الإصطناعى وافاقه فى التعليم على مستوى الوطن العربى: مستوى السياسات
 
الصحافة والإعلام الرقمى فى عصر الذكاء الاصطناعي
الصحافة والإعلام الرقمى  فى عصر الذكاء الاصطناعي  الصحافة والإعلام الرقمى  فى عصر الذكاء الاصطناعي
الصحافة والإعلام الرقمى فى عصر الذكاء الاصطناعي
 
الميتافيرس و مستقبل التعليم فى الوطن العربى
الميتافيرس و مستقبل التعليم فى الوطن العربى الميتافيرس و مستقبل التعليم فى الوطن العربى
الميتافيرس و مستقبل التعليم فى الوطن العربى
 
الذكاء الأصطناعى المسؤول ومستقبل الأمن المناخى وانعكاساته الاجتماعية والأمنية
الذكاء الأصطناعى المسؤول ومستقبل  الأمن المناخى وانعكاساته الاجتماعية والأمنيةالذكاء الأصطناعى المسؤول ومستقبل  الأمن المناخى وانعكاساته الاجتماعية والأمنية
الذكاء الأصطناعى المسؤول ومستقبل الأمن المناخى وانعكاساته الاجتماعية والأمنية
 
الذكاء الأصطناعى المسؤول ومستقبل الأمن المناخى وانعكاساته الاجتماعية والأمنية
الذكاء الأصطناعى المسؤول ومستقبل  الأمن المناخى وانعكاساته الاجتماعية والأمنيةالذكاء الأصطناعى المسؤول ومستقبل  الأمن المناخى وانعكاساته الاجتماعية والأمنية
الذكاء الأصطناعى المسؤول ومستقبل الأمن المناخى وانعكاساته الاجتماعية والأمنية
 
التغير المناخى للاطفال
التغير المناخى للاطفالالتغير المناخى للاطفال
التغير المناخى للاطفال
 
الذكاء الاصطناعى للاطفال
الذكاء الاصطناعى للاطفالالذكاء الاصطناعى للاطفال
الذكاء الاصطناعى للاطفال
 
إستراتيجية مصر للتنمية المستدامة: نحو جائزة الإبتكار والإبداع المؤسسى
إستراتيجية مصر للتنمية المستدامة: نحو جائزة الإبتكار والإبداع المؤسسىإستراتيجية مصر للتنمية المستدامة: نحو جائزة الإبتكار والإبداع المؤسسى
إستراتيجية مصر للتنمية المستدامة: نحو جائزة الإبتكار والإبداع المؤسسى
 
الإقتصاد الأخضر لمواجهة التغيرات المناخية
الإقتصاد الأخضر لمواجهة التغيرات المناخية  الإقتصاد الأخضر لمواجهة التغيرات المناخية
الإقتصاد الأخضر لمواجهة التغيرات المناخية
 
الإستخدام المسؤول للذكاء الإصطناعى فى سياق تغيرالمناخ خارطة طريق فى عال...
   الإستخدام المسؤول للذكاء الإصطناعى  فى سياق تغيرالمناخ   خارطة طريق فى عال...   الإستخدام المسؤول للذكاء الإصطناعى  فى سياق تغيرالمناخ   خارطة طريق فى عال...
الإستخدام المسؤول للذكاء الإصطناعى فى سياق تغيرالمناخ خارطة طريق فى عال...
 
الذكاء الإصطناعي والتغيرات المناخية والبيئية:الفرص والتحديات والأدوات السياسية
الذكاء الإصطناعي والتغيرات المناخية والبيئية:الفرص والتحديات والأدوات السياسيةالذكاء الإصطناعي والتغيرات المناخية والبيئية:الفرص والتحديات والأدوات السياسية
الذكاء الإصطناعي والتغيرات المناخية والبيئية:الفرص والتحديات والأدوات السياسية
 
الذكاء الاصطناعى:أسلحة لا تنام وآفاق لا تنتهى
الذكاء الاصطناعى:أسلحة لا تنام وآفاق لا تنتهى الذكاء الاصطناعى:أسلحة لا تنام وآفاق لا تنتهى
الذكاء الاصطناعى:أسلحة لا تنام وآفاق لا تنتهى
 
اقتصاد ميتافيرس
اقتصاد ميتافيرساقتصاد ميتافيرس
اقتصاد ميتافيرس
 

Kürzlich hochgeladen

Standard vs Custom Battery Packs - Decoding the Power Play
Standard vs Custom Battery Packs - Decoding the Power PlayStandard vs Custom Battery Packs - Decoding the Power Play
Standard vs Custom Battery Packs - Decoding the Power Play
Epec Engineered Technologies
 
XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX
XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX
XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX
ssuser89054b
 
1_Introduction + EAM Vocabulary + how to navigate in EAM.pdf
1_Introduction + EAM Vocabulary + how to navigate in EAM.pdf1_Introduction + EAM Vocabulary + how to navigate in EAM.pdf
1_Introduction + EAM Vocabulary + how to navigate in EAM.pdf
AldoGarca30
 
Digital Communication Essentials: DPCM, DM, and ADM .pptx
Digital Communication Essentials: DPCM, DM, and ADM .pptxDigital Communication Essentials: DPCM, DM, and ADM .pptx
Digital Communication Essentials: DPCM, DM, and ADM .pptx
pritamlangde
 
Hospital management system project report.pdf
Hospital management system project report.pdfHospital management system project report.pdf
Hospital management system project report.pdf
Kamal Acharya
 

Kürzlich hochgeladen (20)

Bhubaneswar🌹Call Girls Bhubaneswar ❤Komal 9777949614 💟 Full Trusted CALL GIRL...
Bhubaneswar🌹Call Girls Bhubaneswar ❤Komal 9777949614 💟 Full Trusted CALL GIRL...Bhubaneswar🌹Call Girls Bhubaneswar ❤Komal 9777949614 💟 Full Trusted CALL GIRL...
Bhubaneswar🌹Call Girls Bhubaneswar ❤Komal 9777949614 💟 Full Trusted CALL GIRL...
 
Unit 4_Part 1 CSE2001 Exception Handling and Function Template and Class Temp...
Unit 4_Part 1 CSE2001 Exception Handling and Function Template and Class Temp...Unit 4_Part 1 CSE2001 Exception Handling and Function Template and Class Temp...
Unit 4_Part 1 CSE2001 Exception Handling and Function Template and Class Temp...
 
Design For Accessibility: Getting it right from the start
Design For Accessibility: Getting it right from the startDesign For Accessibility: Getting it right from the start
Design For Accessibility: Getting it right from the start
 
HOA1&2 - Module 3 - PREHISTORCI ARCHITECTURE OF KERALA.pptx
HOA1&2 - Module 3 - PREHISTORCI ARCHITECTURE OF KERALA.pptxHOA1&2 - Module 3 - PREHISTORCI ARCHITECTURE OF KERALA.pptx
HOA1&2 - Module 3 - PREHISTORCI ARCHITECTURE OF KERALA.pptx
 
COST-EFFETIVE and Energy Efficient BUILDINGS ptx
COST-EFFETIVE  and Energy Efficient BUILDINGS ptxCOST-EFFETIVE  and Energy Efficient BUILDINGS ptx
COST-EFFETIVE and Energy Efficient BUILDINGS ptx
 
Computer Networks Basics of Network Devices
Computer Networks  Basics of Network DevicesComputer Networks  Basics of Network Devices
Computer Networks Basics of Network Devices
 
A Study of Urban Area Plan for Pabna Municipality
A Study of Urban Area Plan for Pabna MunicipalityA Study of Urban Area Plan for Pabna Municipality
A Study of Urban Area Plan for Pabna Municipality
 
PE 459 LECTURE 2- natural gas basic concepts and properties
PE 459 LECTURE 2- natural gas basic concepts and propertiesPE 459 LECTURE 2- natural gas basic concepts and properties
PE 459 LECTURE 2- natural gas basic concepts and properties
 
Orlando’s Arnold Palmer Hospital Layout Strategy-1.pptx
Orlando’s Arnold Palmer Hospital Layout Strategy-1.pptxOrlando’s Arnold Palmer Hospital Layout Strategy-1.pptx
Orlando’s Arnold Palmer Hospital Layout Strategy-1.pptx
 
Standard vs Custom Battery Packs - Decoding the Power Play
Standard vs Custom Battery Packs - Decoding the Power PlayStandard vs Custom Battery Packs - Decoding the Power Play
Standard vs Custom Battery Packs - Decoding the Power Play
 
XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX
XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX
XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX
 
Employee leave management system project.
Employee leave management system project.Employee leave management system project.
Employee leave management system project.
 
1_Introduction + EAM Vocabulary + how to navigate in EAM.pdf
1_Introduction + EAM Vocabulary + how to navigate in EAM.pdf1_Introduction + EAM Vocabulary + how to navigate in EAM.pdf
1_Introduction + EAM Vocabulary + how to navigate in EAM.pdf
 
Digital Communication Essentials: DPCM, DM, and ADM .pptx
Digital Communication Essentials: DPCM, DM, and ADM .pptxDigital Communication Essentials: DPCM, DM, and ADM .pptx
Digital Communication Essentials: DPCM, DM, and ADM .pptx
 
Unleashing the Power of the SORA AI lastest leap
Unleashing the Power of the SORA AI lastest leapUnleashing the Power of the SORA AI lastest leap
Unleashing the Power of the SORA AI lastest leap
 
Hospital management system project report.pdf
Hospital management system project report.pdfHospital management system project report.pdf
Hospital management system project report.pdf
 
HAND TOOLS USED AT ELECTRONICS WORK PRESENTED BY KOUSTAV SARKAR
HAND TOOLS USED AT ELECTRONICS WORK PRESENTED BY KOUSTAV SARKARHAND TOOLS USED AT ELECTRONICS WORK PRESENTED BY KOUSTAV SARKAR
HAND TOOLS USED AT ELECTRONICS WORK PRESENTED BY KOUSTAV SARKAR
 
Hostel management system project report..pdf
Hostel management system project report..pdfHostel management system project report..pdf
Hostel management system project report..pdf
 
A CASE STUDY ON CERAMIC INDUSTRY OF BANGLADESH.pptx
A CASE STUDY ON CERAMIC INDUSTRY OF BANGLADESH.pptxA CASE STUDY ON CERAMIC INDUSTRY OF BANGLADESH.pptx
A CASE STUDY ON CERAMIC INDUSTRY OF BANGLADESH.pptx
 
Learn the concepts of Thermodynamics on Magic Marks
Learn the concepts of Thermodynamics on Magic MarksLearn the concepts of Thermodynamics on Magic Marks
Learn the concepts of Thermodynamics on Magic Marks
 

Satellite orbit prediction based on recurrent neural network using two line elements

  • 1. Alaa Osama Awad Mahmoud • Teacher Assistant faculty of Science Helwan university • SERG Member Satellite Orbit Prediction Based on Recurrent Neural Network using Two Line Elements Advanced Intelligent Systems for Sustainable Development (AISSD 2021) 20-22 August 2021
  • 2. Advanced Intelligent Systems for Sustainable Development (AISSD 2021) 20-22 August 2021 Agenda 1. Introduction. 2. Problem Statement. 3. Methods of Satellite Prediction. 4. Two Line Element dataset Format. 5. How to use Machine Learning Techniques to Predict the Satellite Orbit? 6. Related Work
  • 3. Advanced Intelligent Systems for Sustainable Development (AISSD 2021) 20-22 August 2021 Satellite • a satellite is an object that has been intentionally placed into orbit. These objects are called artificial satellites to distinguish them from natural satellites such as Earth's Moon. • satellite used for (observation , Telecommunication , meteorology , …., etc )
  • 4. Advanced Intelligent Systems for Sustainable Development (AISSD 2021) 20-22 August 2021 Satellites Orbit • A satellite orbit follows the Kepler orbit, which is explained by the six Keplerian elements. • Predictions of satellite orbits is a significant research issue for avoiding collisions in space.
  • 5. Advanced Intelligent Systems for Sustainable Development (AISSD 2021) 20-22 August 2021 Satellite Collision • Satellite collision events have occurred due to incorrect predictions and false alarms.
  • 6. Advanced Intelligent Systems for Sustainable Development (AISSD 2021) 20-22 August 2021 • The first two satellites collision occurred in February 2009 • collision of a U.S. Iridium communications satellite and a Russian Cosmos 2251 communication satellite
  • 7. Advanced Intelligent Systems for Sustainable Development (AISSD 2021) 20-22 August 2021 Space Debris also known as ( space junk, space pollution, space waste, space trash, or space garbage)
  • 8. Advanced Intelligent Systems for Sustainable Development (AISSD 2021) 20-22 August 2021 Satellite orbit prediction • Efficient and high-precision orbit prediction is increasingly crucial to enhance the awareness of the space situation. • collision avoidance, by describing a method that contributes to achieving a requisite increase in orbit prediction accuracy. • Previously using physics • now using machine learning
  • 9. Satellite orbit prediction Methods 1. Laser Advanced Intelligent Systems for Sustainable Development (AISSD 2021) 20-22 August 2021
  • 10. 2. GPS Satellite Advanced Intelligent Systems for Sustainable Development (AISSD 2021) 20-22 August 2021
  • 11. Two Line Elements Advanced Intelligent Systems for Sustainable Development (AISSD 2021) 20-22 August 2021
  • 12. 3. Two Line Elements Advanced Intelligent Systems for Sustainable Development (AISSD 2021) 20-22 August 2021
  • 13. Two-Line Elements TLE Set Format is a data format used to transmit one coded set of orbital elements that perfectly describe the satellite’s orbit around Earth. The method of orbit prediction by combining multiple TLE can achieve the purpose of improving orbit predication precision TLE computed by NORAD (North American Aerospace Defense Command) & NASA (National Aeronautics and Space Administration) using Radar Advanced Intelligent Systems for Sustainable Development (AISSD 2021) 20-22 August 2021
  • 14. Ballistic coefficient Drag term or radiation pressure coefficient Classification International Designator launch year , launch day and the piece of launch EX:- "A" shows it was the first object resulting from this launch. Note:- • The final two characters in the second derivative of mean motion and B* indicate an applicable power of 10. EX:- in B* value the -4 corresponds to 10^-4. • The second derivative of mean motion, B*, and eccentricity all have an assumed leading decimal before the first digit. Epoch Date The number of day , hour ,minutes and seconds passed in a particular year Ballistic coefficient Is the daily rate of change in the number of revs the object completes each day divided by 2 units ( revs / day ) Second Derivative of Mean Motion Is a second order drag term in the SGP4 predictor used to model terminal decay units (revs / day ^3) It measures the second time derivative in daily mean motion divided by 6 Bstar Drag term • The parameter is another drag term in the SGP4 predictor units (radii^-1) • The true value of B* is unknown for objects in orbit; instead the dynamics model adjusts the B* term as necessary to account for non-linear changes in mean anomaly. • B* has units of inverse Earth radii. Advanced Intelligent Systems for Sustainable Development (AISSD 2021) 20-22 August 2021
  • 15. Inclination (degrees) The angle between the equator and the orbit plane.( i ) Right Ascension of the Ascending Node (degrees) The angle between vernal equinox and the point where the orbit crosses the equatorial plane (going north).( Ω ) Eccentricity A constant defining the shape of the orbit (0=circular, Less than 1=elliptical ).(𝑒 ) Argument of Perigee (degrees) The angle between the ascending node and the orbit's point of closest approach to the earth (perigee).(𝜔 ) Mean Anomaly (degrees) • The angle, measured from perigee, of the satellite location in the orbit referenced to a circular orbit with radius equal to the semi-major axis.(M) • is the fraction of an elliptical orbit's period that has elapsed since the orbiting body passed periapsis Mean Motion ( rev / day ) The value is the mean number of orbits per day the object completes.(n) Revolution Number • The orbit number at Epoch Time. • The orbit revolution number normally increments each time the object passes the ascending node in orbit; however, the value occasionally does not increment correctly, erroneously failing to increment. Revolution number at epoch Advanced Intelligent Systems for Sustainable Development (AISSD 2021) 20-22 August 2021
  • 16. Orbital Elements a – semi-major axis this element defines the size of the orbit e – eccentricity this element gives the shape of the orbit i – inclination this element represents the orientation of the orbit with respect to Earth’s equator Ω – longitude of the ascending node this element represents the location of the ascending and descending orbit locations with respect to the Earth’s equatorial plane ω – argument of perigee this element defines where the low point, called perigee, of the orbit is with respect to the Earth’s surface 𝜈 – true anomaly at epoch • this element notes where the satellite is within the orbit with respect to the perigee • The angle define the position of the satellite on the orbit which continually increases with time Advanced Intelligent Systems for Sustainable Development (AISSD 2021) 20-22 August 2021
  • 17. Machine Learning is using Data to Answer the Question Advanced Intelligent Systems for Sustainable Development (AISSD 2021) 20-22 August 2021
  • 18. Artificial Intelligence Intelligence machines that think and act like human Machine Learning is an application provides systems the ability to automatically learn and improve from experience without being explicitly programmed. Deep Learning Machine think like human brains using artificial neural networks Advanced Intelligent Systems for Sustainable Development (AISSD 2021) 20-22 August 2021
  • 19. • RNNs are a type of ANN architecture that uses iterative function loops to store information, inspired by the cyclical connectivity of neurons in the brain. Recurrent Neural Network(RNN) • RNNs are particularly useful for dealing with sequential data because they consider not only the current input but also the previous input, allowing them to remember what happened previously. • RNNs learn from training data and are distinguished by their "memory," which allows them to affect current input and output by using information from previous inputs. Advanced Intelligent Systems for Sustainable Development (AISSD 2021) 20-22 August 2021
  • 20. Satellite Orbit Prediction Using Machine Learning Using Two Line Element Data Format and the core data of the satellite orbit includes six integral constants, namely six elements of the Kepler orbit:- 1. semi-major orbit axis a 2. the orbital eccentricity e 3. the angle between the orbital plane of the satellite and the equatorial plane i 4. Equatorial longitude Ω 5. Orbital perigee polar angle ω 6. satellite orbital ascending node N Advanced Intelligent Systems for Sustainable Development (AISSD 2021) 20-22 August 2021
  • 21. Translate angels to position 𝒂𝑰 𝒂𝑱 𝒂𝑲 = 𝑻𝑴 𝒂𝑷 𝒂𝑸 𝒂𝑾 Where ( TM ) is the transformation matrix 𝑻𝑴 = 𝒄𝒐𝒔𝝎 𝒄𝒐𝒔𝛺 − 𝒔𝒊𝒏𝝎 𝒔𝒊𝒏𝛺 𝒄𝒐𝒔𝑰 −𝒔𝒊𝒏𝝎 𝒄𝒐𝒔𝛺 − 𝒄𝒐𝒔𝝎 𝒔𝒊𝒏𝛺 𝒄𝒐𝒔𝑰 𝒔𝒊𝒏𝛺 𝒔𝒊𝒏𝑰 𝒄𝒐𝒔𝝎 𝒔𝒊𝒏𝛺 + 𝒔𝒊𝒏𝝎 𝒄𝒐𝒔𝛺 𝒄𝒐𝒔𝑰 −𝒔𝒊𝒏𝝎 𝒔𝒊𝒏𝛺 + 𝒄𝒐𝒔𝝎 𝒄𝒐𝒔𝛺 𝒄𝒐𝒔𝑰 −𝒄𝒐𝒔𝛺 𝒔𝒊𝒏𝑰 𝒔𝒊𝒏𝝎 𝒔𝒊𝒏𝑰 𝒄𝒐𝒔𝝎 𝒔𝒊𝒏𝑰 𝒄𝒐𝒔𝑰 Advanced Intelligent Systems for Sustainable Development (AISSD 2021) 20-22 August 2021
  • 22. 𝒓𝑷𝑸𝑾 = 𝒓 𝒄𝒐𝒔 𝜈 𝒓 𝒔𝒊𝒏 𝜈 𝟎 r = 𝒂 𝟏 − 𝒆𝟐 𝟏+𝒆 𝒄𝒐𝒔 𝜈 Advanced Intelligent Systems for Sustainable Development (AISSD 2021) 20-22 August 2021
  • 23. 𝝂 = 𝒎 + (𝟐𝒆 − 𝟏 𝟒 𝒆 𝟑 )𝒔𝒊𝒏(𝒎) + 𝟒 𝟓 𝒆 𝟐 𝒔𝒊 𝒏(𝟐𝒎) + 𝟏𝟑 𝟏𝟐 𝒆 𝟑 𝒔𝒊𝒏(𝟑𝒎) Advanced Intelligent Systems for Sustainable Development (AISSD 2021) 20-22 August 2021
  • 24. 𝑬 = 𝒎 + ( 𝒆 − 𝟏 𝟖 𝒆 𝟑 ) 𝒔𝒊𝒏(𝒎) + 𝟏 𝟐 𝒆 𝟐 (𝐬𝐢𝐧 𝐦) 𝟐 + 𝟑 𝟖 𝒆 𝟑 𝒔𝒊𝒏( 𝟑𝒎) Advanced Intelligent Systems for Sustainable Development (AISSD 2021) 20-22 August 2021
  • 25. Related Work Research on Satellite Orbit Prediction Based on Neural Network Algorithm June 22–24, 2019 Advanced Intelligent Systems for Sustainable Development (AISSD 2021) 20-22 August 2021
  • 26. • The experiment is based on the Keras library under the TensorFlow framework and the Sklearn machine learning library. Advanced Intelligent Systems for Sustainable Development (AISSD 2021) 20-22 August 2021
  • 27. Data are added to construct a TLE forecast eight for TLE data prediction. The elements are as follows: The LSTM (Long-term and short-term memory networks )- based prediction model consists of four parts, as shown in the figure : (1) Input layer: Eight element data of TLE orbit prediction. (2) LSTM layer: Obtain high-dimensional features of the eight-element data of TLE orbit prediction. (3) Full-connect layer: Integrate the acquired high- dimensional features. (4) Output layer: Calculate the predicted value of the target element and outputs it. Advanced Intelligent Systems for Sustainable Development (AISSD 2021) 20-22 August 2021
  • 28. Research Objective we will analyze the current progress of applying satellite orbit prediction deep learning techniques to enhance satellite orbit prediction accuracy and avoid the satellite collision Advanced Intelligent Systems for Sustainable Development (AISSD 2021) 20-22 August 2021
  • 29. Satellite Total Element of data Training data Testing data Semi major axis sat IRIDIUM 7 24793 14755 80% 20% a =7155 km Data Advanced Intelligent Systems for Sustainable Development (AISSD 2021) 20-22 August 2021
  • 30. Acknowledgment Advanced Intelligent Systems for Sustainable Development (AISSD 2021) 20-22 August 2021
  • 31. Advanced Intelligent Systems for Sustainable Development (AISSD 2021) 20-22 August 2021