├── COE2RV.m ├── Keplers_Eqn.m ├── LICENSE ├── MAIN_TLE_READ_Multifile.m ├── MAIN_TLE_READ_Multifile_ALL_TLE.m ├── PlotEarth ├── PlotEarth │ ├── BlueMarble.png │ ├── BlueMarble_bw.png │ ├── BlueMarble_old.png │ ├── Topo.png │ ├── cbGn-s100.rel.png │ ├── cbGn-s100.tex.png │ ├── cbGn_poe-z20-tex.png │ ├── cbGn_pof-bm.png │ ├── cbGn_pof-z-25-pat.png │ ├── cubedsphere.m │ ├── mercator.m │ └── plotearth.m └── license.txt ├── README.md ├── TLE_ALL.jpeg ├── TLE_Files ├── beidou-05-25-2017.txt ├── beidou-clean-complete.txt ├── beidou-clean.txt ├── galileo-05-25-2017.txt ├── galileo-full.txt ├── glo-ops-05-25-2017.txt ├── glo-ops-clean.txt ├── gps-ops-05-25-2017.txt ├── gps-ops-clean.txt ├── iridium-05-25-2017.txt ├── iridium.txt ├── nnss.txt ├── planet-labs.txt ├── qzss-full.txt ├── rapideye.txt ├── sbas-05-25-2017.txt ├── sbas-GEO.txt ├── sbas-all-clean.txt ├── sbas-clean.txt ├── sbas-jan-2017-clean.txt ├── sbas-reduced-clean.txt ├── sbas-with-full-qzss.txt ├── sbas.txt ├── skybox.txt ├── waas-egnos-msas-gagan.txt └── waas-egnos-msas.txt ├── TLE_Files_All ├── Comm │ ├── amateur.txt │ ├── geo.txt │ ├── globalstar.txt │ ├── gorizont.txt │ ├── intelsat.txt │ ├── iridium.txt │ ├── molniya.txt │ ├── orbcomm.txt │ ├── other-comm.txt │ ├── raduga.txt │ └── x-comm.txt ├── Do not use │ └── sarsat.txt ├── Nav │ ├── beidou.txt │ ├── galileo.txt │ ├── glo-ops.txt │ └── gps-ops.txt ├── SBAS │ └── sbas.txt ├── Scientific │ ├── education.txt │ ├── engineering.txt │ ├── geodetic.txt │ └── science.txt └── Weather_Earth_Resources │ ├── argos.txt │ ├── dmc.txt │ ├── goes.txt │ ├── noaa.txt │ ├── resource.txt │ ├── tdrss.txt │ └── weather.txt ├── exportfig.m ├── physical_constants.m ├── two_line_elem_conv.m └── utc2gmst.m /COE2RV.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tylergrreid/Two-Line-Element-Reader-Plotter/HEAD/COE2RV.m -------------------------------------------------------------------------------- /Keplers_Eqn.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tylergrreid/Two-Line-Element-Reader-Plotter/HEAD/Keplers_Eqn.m -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tylergrreid/Two-Line-Element-Reader-Plotter/HEAD/LICENSE -------------------------------------------------------------------------------- /MAIN_TLE_READ_Multifile.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tylergrreid/Two-Line-Element-Reader-Plotter/HEAD/MAIN_TLE_READ_Multifile.m -------------------------------------------------------------------------------- /MAIN_TLE_READ_Multifile_ALL_TLE.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tylergrreid/Two-Line-Element-Reader-Plotter/HEAD/MAIN_TLE_READ_Multifile_ALL_TLE.m -------------------------------------------------------------------------------- /PlotEarth/PlotEarth/BlueMarble.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tylergrreid/Two-Line-Element-Reader-Plotter/HEAD/PlotEarth/PlotEarth/BlueMarble.png -------------------------------------------------------------------------------- /PlotEarth/PlotEarth/BlueMarble_bw.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tylergrreid/Two-Line-Element-Reader-Plotter/HEAD/PlotEarth/PlotEarth/BlueMarble_bw.png -------------------------------------------------------------------------------- /PlotEarth/PlotEarth/BlueMarble_old.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tylergrreid/Two-Line-Element-Reader-Plotter/HEAD/PlotEarth/PlotEarth/BlueMarble_old.png -------------------------------------------------------------------------------- /PlotEarth/PlotEarth/Topo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tylergrreid/Two-Line-Element-Reader-Plotter/HEAD/PlotEarth/PlotEarth/Topo.png -------------------------------------------------------------------------------- /PlotEarth/PlotEarth/cbGn-s100.rel.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tylergrreid/Two-Line-Element-Reader-Plotter/HEAD/PlotEarth/PlotEarth/cbGn-s100.rel.png -------------------------------------------------------------------------------- /PlotEarth/PlotEarth/cbGn-s100.tex.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tylergrreid/Two-Line-Element-Reader-Plotter/HEAD/PlotEarth/PlotEarth/cbGn-s100.tex.png -------------------------------------------------------------------------------- /PlotEarth/PlotEarth/cbGn_poe-z20-tex.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tylergrreid/Two-Line-Element-Reader-Plotter/HEAD/PlotEarth/PlotEarth/cbGn_poe-z20-tex.png -------------------------------------------------------------------------------- /PlotEarth/PlotEarth/cbGn_pof-bm.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tylergrreid/Two-Line-Element-Reader-Plotter/HEAD/PlotEarth/PlotEarth/cbGn_pof-bm.png -------------------------------------------------------------------------------- /PlotEarth/PlotEarth/cbGn_pof-z-25-pat.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tylergrreid/Two-Line-Element-Reader-Plotter/HEAD/PlotEarth/PlotEarth/cbGn_pof-z-25-pat.png -------------------------------------------------------------------------------- /PlotEarth/PlotEarth/cubedsphere.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tylergrreid/Two-Line-Element-Reader-Plotter/HEAD/PlotEarth/PlotEarth/cubedsphere.m -------------------------------------------------------------------------------- /PlotEarth/PlotEarth/mercator.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tylergrreid/Two-Line-Element-Reader-Plotter/HEAD/PlotEarth/PlotEarth/mercator.m -------------------------------------------------------------------------------- /PlotEarth/PlotEarth/plotearth.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tylergrreid/Two-Line-Element-Reader-Plotter/HEAD/PlotEarth/PlotEarth/plotearth.m -------------------------------------------------------------------------------- /PlotEarth/license.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tylergrreid/Two-Line-Element-Reader-Plotter/HEAD/PlotEarth/license.txt -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tylergrreid/Two-Line-Element-Reader-Plotter/HEAD/README.md -------------------------------------------------------------------------------- /TLE_ALL.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tylergrreid/Two-Line-Element-Reader-Plotter/HEAD/TLE_ALL.jpeg -------------------------------------------------------------------------------- /TLE_Files/beidou-05-25-2017.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tylergrreid/Two-Line-Element-Reader-Plotter/HEAD/TLE_Files/beidou-05-25-2017.txt -------------------------------------------------------------------------------- /TLE_Files/beidou-clean-complete.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tylergrreid/Two-Line-Element-Reader-Plotter/HEAD/TLE_Files/beidou-clean-complete.txt -------------------------------------------------------------------------------- /TLE_Files/beidou-clean.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tylergrreid/Two-Line-Element-Reader-Plotter/HEAD/TLE_Files/beidou-clean.txt -------------------------------------------------------------------------------- /TLE_Files/galileo-05-25-2017.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tylergrreid/Two-Line-Element-Reader-Plotter/HEAD/TLE_Files/galileo-05-25-2017.txt -------------------------------------------------------------------------------- /TLE_Files/galileo-full.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tylergrreid/Two-Line-Element-Reader-Plotter/HEAD/TLE_Files/galileo-full.txt -------------------------------------------------------------------------------- /TLE_Files/glo-ops-05-25-2017.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tylergrreid/Two-Line-Element-Reader-Plotter/HEAD/TLE_Files/glo-ops-05-25-2017.txt -------------------------------------------------------------------------------- /TLE_Files/glo-ops-clean.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tylergrreid/Two-Line-Element-Reader-Plotter/HEAD/TLE_Files/glo-ops-clean.txt -------------------------------------------------------------------------------- /TLE_Files/gps-ops-05-25-2017.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tylergrreid/Two-Line-Element-Reader-Plotter/HEAD/TLE_Files/gps-ops-05-25-2017.txt -------------------------------------------------------------------------------- /TLE_Files/gps-ops-clean.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tylergrreid/Two-Line-Element-Reader-Plotter/HEAD/TLE_Files/gps-ops-clean.txt -------------------------------------------------------------------------------- /TLE_Files/iridium-05-25-2017.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tylergrreid/Two-Line-Element-Reader-Plotter/HEAD/TLE_Files/iridium-05-25-2017.txt -------------------------------------------------------------------------------- /TLE_Files/iridium.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tylergrreid/Two-Line-Element-Reader-Plotter/HEAD/TLE_Files/iridium.txt -------------------------------------------------------------------------------- /TLE_Files/nnss.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tylergrreid/Two-Line-Element-Reader-Plotter/HEAD/TLE_Files/nnss.txt -------------------------------------------------------------------------------- /TLE_Files/planet-labs.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tylergrreid/Two-Line-Element-Reader-Plotter/HEAD/TLE_Files/planet-labs.txt -------------------------------------------------------------------------------- /TLE_Files/qzss-full.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tylergrreid/Two-Line-Element-Reader-Plotter/HEAD/TLE_Files/qzss-full.txt -------------------------------------------------------------------------------- /TLE_Files/rapideye.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tylergrreid/Two-Line-Element-Reader-Plotter/HEAD/TLE_Files/rapideye.txt -------------------------------------------------------------------------------- /TLE_Files/sbas-05-25-2017.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tylergrreid/Two-Line-Element-Reader-Plotter/HEAD/TLE_Files/sbas-05-25-2017.txt -------------------------------------------------------------------------------- /TLE_Files/sbas-GEO.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tylergrreid/Two-Line-Element-Reader-Plotter/HEAD/TLE_Files/sbas-GEO.txt -------------------------------------------------------------------------------- /TLE_Files/sbas-all-clean.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tylergrreid/Two-Line-Element-Reader-Plotter/HEAD/TLE_Files/sbas-all-clean.txt -------------------------------------------------------------------------------- /TLE_Files/sbas-clean.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tylergrreid/Two-Line-Element-Reader-Plotter/HEAD/TLE_Files/sbas-clean.txt -------------------------------------------------------------------------------- /TLE_Files/sbas-jan-2017-clean.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tylergrreid/Two-Line-Element-Reader-Plotter/HEAD/TLE_Files/sbas-jan-2017-clean.txt -------------------------------------------------------------------------------- /TLE_Files/sbas-reduced-clean.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tylergrreid/Two-Line-Element-Reader-Plotter/HEAD/TLE_Files/sbas-reduced-clean.txt -------------------------------------------------------------------------------- /TLE_Files/sbas-with-full-qzss.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tylergrreid/Two-Line-Element-Reader-Plotter/HEAD/TLE_Files/sbas-with-full-qzss.txt -------------------------------------------------------------------------------- /TLE_Files/sbas.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tylergrreid/Two-Line-Element-Reader-Plotter/HEAD/TLE_Files/sbas.txt -------------------------------------------------------------------------------- /TLE_Files/skybox.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tylergrreid/Two-Line-Element-Reader-Plotter/HEAD/TLE_Files/skybox.txt -------------------------------------------------------------------------------- /TLE_Files/waas-egnos-msas-gagan.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tylergrreid/Two-Line-Element-Reader-Plotter/HEAD/TLE_Files/waas-egnos-msas-gagan.txt -------------------------------------------------------------------------------- /TLE_Files/waas-egnos-msas.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tylergrreid/Two-Line-Element-Reader-Plotter/HEAD/TLE_Files/waas-egnos-msas.txt -------------------------------------------------------------------------------- /TLE_Files_All/Comm/amateur.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tylergrreid/Two-Line-Element-Reader-Plotter/HEAD/TLE_Files_All/Comm/amateur.txt -------------------------------------------------------------------------------- /TLE_Files_All/Comm/geo.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tylergrreid/Two-Line-Element-Reader-Plotter/HEAD/TLE_Files_All/Comm/geo.txt -------------------------------------------------------------------------------- /TLE_Files_All/Comm/globalstar.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tylergrreid/Two-Line-Element-Reader-Plotter/HEAD/TLE_Files_All/Comm/globalstar.txt -------------------------------------------------------------------------------- /TLE_Files_All/Comm/gorizont.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tylergrreid/Two-Line-Element-Reader-Plotter/HEAD/TLE_Files_All/Comm/gorizont.txt -------------------------------------------------------------------------------- /TLE_Files_All/Comm/intelsat.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tylergrreid/Two-Line-Element-Reader-Plotter/HEAD/TLE_Files_All/Comm/intelsat.txt -------------------------------------------------------------------------------- /TLE_Files_All/Comm/iridium.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tylergrreid/Two-Line-Element-Reader-Plotter/HEAD/TLE_Files_All/Comm/iridium.txt -------------------------------------------------------------------------------- /TLE_Files_All/Comm/molniya.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tylergrreid/Two-Line-Element-Reader-Plotter/HEAD/TLE_Files_All/Comm/molniya.txt -------------------------------------------------------------------------------- /TLE_Files_All/Comm/orbcomm.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tylergrreid/Two-Line-Element-Reader-Plotter/HEAD/TLE_Files_All/Comm/orbcomm.txt -------------------------------------------------------------------------------- /TLE_Files_All/Comm/other-comm.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tylergrreid/Two-Line-Element-Reader-Plotter/HEAD/TLE_Files_All/Comm/other-comm.txt -------------------------------------------------------------------------------- /TLE_Files_All/Comm/raduga.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tylergrreid/Two-Line-Element-Reader-Plotter/HEAD/TLE_Files_All/Comm/raduga.txt -------------------------------------------------------------------------------- /TLE_Files_All/Comm/x-comm.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tylergrreid/Two-Line-Element-Reader-Plotter/HEAD/TLE_Files_All/Comm/x-comm.txt -------------------------------------------------------------------------------- /TLE_Files_All/Do not use/sarsat.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tylergrreid/Two-Line-Element-Reader-Plotter/HEAD/TLE_Files_All/Do not use/sarsat.txt -------------------------------------------------------------------------------- /TLE_Files_All/Nav/beidou.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tylergrreid/Two-Line-Element-Reader-Plotter/HEAD/TLE_Files_All/Nav/beidou.txt -------------------------------------------------------------------------------- /TLE_Files_All/Nav/galileo.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tylergrreid/Two-Line-Element-Reader-Plotter/HEAD/TLE_Files_All/Nav/galileo.txt -------------------------------------------------------------------------------- /TLE_Files_All/Nav/glo-ops.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tylergrreid/Two-Line-Element-Reader-Plotter/HEAD/TLE_Files_All/Nav/glo-ops.txt -------------------------------------------------------------------------------- /TLE_Files_All/Nav/gps-ops.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tylergrreid/Two-Line-Element-Reader-Plotter/HEAD/TLE_Files_All/Nav/gps-ops.txt -------------------------------------------------------------------------------- /TLE_Files_All/SBAS/sbas.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tylergrreid/Two-Line-Element-Reader-Plotter/HEAD/TLE_Files_All/SBAS/sbas.txt -------------------------------------------------------------------------------- /TLE_Files_All/Scientific/education.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tylergrreid/Two-Line-Element-Reader-Plotter/HEAD/TLE_Files_All/Scientific/education.txt -------------------------------------------------------------------------------- /TLE_Files_All/Scientific/engineering.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tylergrreid/Two-Line-Element-Reader-Plotter/HEAD/TLE_Files_All/Scientific/engineering.txt -------------------------------------------------------------------------------- /TLE_Files_All/Scientific/geodetic.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tylergrreid/Two-Line-Element-Reader-Plotter/HEAD/TLE_Files_All/Scientific/geodetic.txt -------------------------------------------------------------------------------- /TLE_Files_All/Scientific/science.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tylergrreid/Two-Line-Element-Reader-Plotter/HEAD/TLE_Files_All/Scientific/science.txt -------------------------------------------------------------------------------- /TLE_Files_All/Weather_Earth_Resources/argos.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tylergrreid/Two-Line-Element-Reader-Plotter/HEAD/TLE_Files_All/Weather_Earth_Resources/argos.txt -------------------------------------------------------------------------------- /TLE_Files_All/Weather_Earth_Resources/dmc.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tylergrreid/Two-Line-Element-Reader-Plotter/HEAD/TLE_Files_All/Weather_Earth_Resources/dmc.txt -------------------------------------------------------------------------------- /TLE_Files_All/Weather_Earth_Resources/goes.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tylergrreid/Two-Line-Element-Reader-Plotter/HEAD/TLE_Files_All/Weather_Earth_Resources/goes.txt -------------------------------------------------------------------------------- /TLE_Files_All/Weather_Earth_Resources/noaa.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tylergrreid/Two-Line-Element-Reader-Plotter/HEAD/TLE_Files_All/Weather_Earth_Resources/noaa.txt -------------------------------------------------------------------------------- /TLE_Files_All/Weather_Earth_Resources/resource.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tylergrreid/Two-Line-Element-Reader-Plotter/HEAD/TLE_Files_All/Weather_Earth_Resources/resource.txt -------------------------------------------------------------------------------- /TLE_Files_All/Weather_Earth_Resources/tdrss.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tylergrreid/Two-Line-Element-Reader-Plotter/HEAD/TLE_Files_All/Weather_Earth_Resources/tdrss.txt -------------------------------------------------------------------------------- /TLE_Files_All/Weather_Earth_Resources/weather.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tylergrreid/Two-Line-Element-Reader-Plotter/HEAD/TLE_Files_All/Weather_Earth_Resources/weather.txt -------------------------------------------------------------------------------- /exportfig.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tylergrreid/Two-Line-Element-Reader-Plotter/HEAD/exportfig.m -------------------------------------------------------------------------------- /physical_constants.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tylergrreid/Two-Line-Element-Reader-Plotter/HEAD/physical_constants.m -------------------------------------------------------------------------------- /two_line_elem_conv.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tylergrreid/Two-Line-Element-Reader-Plotter/HEAD/two_line_elem_conv.m -------------------------------------------------------------------------------- /utc2gmst.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tylergrreid/Two-Line-Element-Reader-Plotter/HEAD/utc2gmst.m --------------------------------------------------------------------------------