├── .DS_Store ├── .gitattributes ├── LICENSE ├── README.md ├── orbdtools ├── .DS_Store ├── __init__.py ├── arcassocia │ ├── .DS_Store │ └── __init__.py ├── arcmatch │ ├── .DS_Store │ ├── __init__.py │ ├── optical.py │ ├── parse_tle.py │ └── radar.py ├── classes │ ├── .DS_Store │ ├── __init__.py │ ├── class_arcobs.py │ ├── class_bodies.py │ ├── class_cod.py │ ├── class_frametrans.py │ ├── class_iod.py │ ├── class_keprvtrans.py │ ├── class_orbeletrans.py │ └── class_tle.py ├── cod │ ├── .DS_Store │ ├── __init__.py │ └── sgp4 │ │ ├── .DS_Store │ │ ├── __init__.py │ │ ├── sgp4_bstar.py │ │ ├── sgp4_init.py │ │ └── sgp4_od │ │ ├── .DS_Store │ │ ├── __init__.py │ │ ├── optical.py │ │ └── radar.py ├── iod │ ├── .DS_Store │ ├── __init__.py │ ├── angular │ │ ├── .DS_Store │ │ ├── __init__.py │ │ ├── circular.py │ │ ├── doubleR.py │ │ ├── fg_series.py │ │ ├── gauss.py │ │ ├── gooding.py │ │ ├── karimi.py │ │ ├── laplace.py │ │ ├── multilaplace.py │ │ └── ref_vec.py │ ├── common.py │ ├── lambert │ │ ├── .DS_Store │ │ ├── __init__.py │ │ ├── battin.py │ │ ├── izzo.py │ │ └── universal.py │ └── radar │ │ ├── .DS_Store │ │ ├── __init__.py │ │ ├── fg_series.py │ │ ├── gibbs.py │ │ └── multifitting.py ├── pod │ ├── .DS_Store │ └── __init__.py ├── transform │ ├── .DS_Store │ ├── __init__.py │ ├── frame_trans.py │ ├── kep_rv_trans.py │ └── orbele_trans.py └── utils │ ├── .DS_Store │ ├── Const.py │ ├── __init__.py │ ├── data_download.py │ ├── data_prepare.py │ ├── math.py │ ├── preprocessing.py │ └── try_download.py ├── readme_figs ├── .DS_Store ├── df.png ├── df_epoch.png └── tle_statistic.png ├── setup.py └── test ├── .DS_Store ├── test1 ├── optical_obs.dat ├── radar_obs.dat └── tle_20220524.txt ├── test2 ├── T39485_S1_1_C6_1.dat └── tle_20220524.txt ├── test3 ├── T22694_S1_1_C5_1.dat └── tle_20220325.txt ├── test4 ├── .DS_Store ├── T15826_S2_2_C5_2.dat ├── T20394_S1_3_C6_3.dat └── tle_20220325.txt ├── test5 ├── .DS_Store ├── T25872_AREL_1.dat ├── T25872_KUN2_2.dat └── tle_20220119.txt └── test6 ├── T38044_S1_1_C1_1.dat ├── T38044_S1_2_C1_2.dat └── tle_20220722.txt /.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lcx366/ORBDTOOLS/HEAD/.DS_Store -------------------------------------------------------------------------------- /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lcx366/ORBDTOOLS/HEAD/.gitattributes -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lcx366/ORBDTOOLS/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lcx366/ORBDTOOLS/HEAD/README.md -------------------------------------------------------------------------------- /orbdtools/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lcx366/ORBDTOOLS/HEAD/orbdtools/.DS_Store -------------------------------------------------------------------------------- /orbdtools/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lcx366/ORBDTOOLS/HEAD/orbdtools/__init__.py -------------------------------------------------------------------------------- /orbdtools/arcassocia/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lcx366/ORBDTOOLS/HEAD/orbdtools/arcassocia/.DS_Store -------------------------------------------------------------------------------- /orbdtools/arcassocia/__init__.py: -------------------------------------------------------------------------------- 1 | # This file is intentionally empty -------------------------------------------------------------------------------- /orbdtools/arcmatch/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lcx366/ORBDTOOLS/HEAD/orbdtools/arcmatch/.DS_Store -------------------------------------------------------------------------------- /orbdtools/arcmatch/__init__.py: -------------------------------------------------------------------------------- 1 | # This file is intentionally empty -------------------------------------------------------------------------------- /orbdtools/arcmatch/optical.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lcx366/ORBDTOOLS/HEAD/orbdtools/arcmatch/optical.py -------------------------------------------------------------------------------- /orbdtools/arcmatch/parse_tle.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lcx366/ORBDTOOLS/HEAD/orbdtools/arcmatch/parse_tle.py -------------------------------------------------------------------------------- /orbdtools/arcmatch/radar.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lcx366/ORBDTOOLS/HEAD/orbdtools/arcmatch/radar.py -------------------------------------------------------------------------------- /orbdtools/classes/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lcx366/ORBDTOOLS/HEAD/orbdtools/classes/.DS_Store -------------------------------------------------------------------------------- /orbdtools/classes/__init__.py: -------------------------------------------------------------------------------- 1 | # This file is intentionally empty -------------------------------------------------------------------------------- /orbdtools/classes/class_arcobs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lcx366/ORBDTOOLS/HEAD/orbdtools/classes/class_arcobs.py -------------------------------------------------------------------------------- /orbdtools/classes/class_bodies.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lcx366/ORBDTOOLS/HEAD/orbdtools/classes/class_bodies.py -------------------------------------------------------------------------------- /orbdtools/classes/class_cod.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lcx366/ORBDTOOLS/HEAD/orbdtools/classes/class_cod.py -------------------------------------------------------------------------------- /orbdtools/classes/class_frametrans.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lcx366/ORBDTOOLS/HEAD/orbdtools/classes/class_frametrans.py -------------------------------------------------------------------------------- /orbdtools/classes/class_iod.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lcx366/ORBDTOOLS/HEAD/orbdtools/classes/class_iod.py -------------------------------------------------------------------------------- /orbdtools/classes/class_keprvtrans.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lcx366/ORBDTOOLS/HEAD/orbdtools/classes/class_keprvtrans.py -------------------------------------------------------------------------------- /orbdtools/classes/class_orbeletrans.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lcx366/ORBDTOOLS/HEAD/orbdtools/classes/class_orbeletrans.py -------------------------------------------------------------------------------- /orbdtools/classes/class_tle.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lcx366/ORBDTOOLS/HEAD/orbdtools/classes/class_tle.py -------------------------------------------------------------------------------- /orbdtools/cod/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lcx366/ORBDTOOLS/HEAD/orbdtools/cod/.DS_Store -------------------------------------------------------------------------------- /orbdtools/cod/__init__.py: -------------------------------------------------------------------------------- 1 | # This file is intentionally empty -------------------------------------------------------------------------------- /orbdtools/cod/sgp4/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lcx366/ORBDTOOLS/HEAD/orbdtools/cod/sgp4/.DS_Store -------------------------------------------------------------------------------- /orbdtools/cod/sgp4/__init__.py: -------------------------------------------------------------------------------- 1 | # This file is intentionally empty -------------------------------------------------------------------------------- /orbdtools/cod/sgp4/sgp4_bstar.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lcx366/ORBDTOOLS/HEAD/orbdtools/cod/sgp4/sgp4_bstar.py -------------------------------------------------------------------------------- /orbdtools/cod/sgp4/sgp4_init.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lcx366/ORBDTOOLS/HEAD/orbdtools/cod/sgp4/sgp4_init.py -------------------------------------------------------------------------------- /orbdtools/cod/sgp4/sgp4_od/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lcx366/ORBDTOOLS/HEAD/orbdtools/cod/sgp4/sgp4_od/.DS_Store -------------------------------------------------------------------------------- /orbdtools/cod/sgp4/sgp4_od/__init__.py: -------------------------------------------------------------------------------- 1 | # This file is intentionally empty -------------------------------------------------------------------------------- /orbdtools/cod/sgp4/sgp4_od/optical.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lcx366/ORBDTOOLS/HEAD/orbdtools/cod/sgp4/sgp4_od/optical.py -------------------------------------------------------------------------------- /orbdtools/cod/sgp4/sgp4_od/radar.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lcx366/ORBDTOOLS/HEAD/orbdtools/cod/sgp4/sgp4_od/radar.py -------------------------------------------------------------------------------- /orbdtools/iod/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lcx366/ORBDTOOLS/HEAD/orbdtools/iod/.DS_Store -------------------------------------------------------------------------------- /orbdtools/iod/__init__.py: -------------------------------------------------------------------------------- 1 | # This file is intentionally empty -------------------------------------------------------------------------------- /orbdtools/iod/angular/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lcx366/ORBDTOOLS/HEAD/orbdtools/iod/angular/.DS_Store -------------------------------------------------------------------------------- /orbdtools/iod/angular/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /orbdtools/iod/angular/circular.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lcx366/ORBDTOOLS/HEAD/orbdtools/iod/angular/circular.py -------------------------------------------------------------------------------- /orbdtools/iod/angular/doubleR.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lcx366/ORBDTOOLS/HEAD/orbdtools/iod/angular/doubleR.py -------------------------------------------------------------------------------- /orbdtools/iod/angular/fg_series.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lcx366/ORBDTOOLS/HEAD/orbdtools/iod/angular/fg_series.py -------------------------------------------------------------------------------- /orbdtools/iod/angular/gauss.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lcx366/ORBDTOOLS/HEAD/orbdtools/iod/angular/gauss.py -------------------------------------------------------------------------------- /orbdtools/iod/angular/gooding.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lcx366/ORBDTOOLS/HEAD/orbdtools/iod/angular/gooding.py -------------------------------------------------------------------------------- /orbdtools/iod/angular/karimi.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lcx366/ORBDTOOLS/HEAD/orbdtools/iod/angular/karimi.py -------------------------------------------------------------------------------- /orbdtools/iod/angular/laplace.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lcx366/ORBDTOOLS/HEAD/orbdtools/iod/angular/laplace.py -------------------------------------------------------------------------------- /orbdtools/iod/angular/multilaplace.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lcx366/ORBDTOOLS/HEAD/orbdtools/iod/angular/multilaplace.py -------------------------------------------------------------------------------- /orbdtools/iod/angular/ref_vec.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lcx366/ORBDTOOLS/HEAD/orbdtools/iod/angular/ref_vec.py -------------------------------------------------------------------------------- /orbdtools/iod/common.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lcx366/ORBDTOOLS/HEAD/orbdtools/iod/common.py -------------------------------------------------------------------------------- /orbdtools/iod/lambert/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lcx366/ORBDTOOLS/HEAD/orbdtools/iod/lambert/.DS_Store -------------------------------------------------------------------------------- /orbdtools/iod/lambert/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /orbdtools/iod/lambert/battin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lcx366/ORBDTOOLS/HEAD/orbdtools/iod/lambert/battin.py -------------------------------------------------------------------------------- /orbdtools/iod/lambert/izzo.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lcx366/ORBDTOOLS/HEAD/orbdtools/iod/lambert/izzo.py -------------------------------------------------------------------------------- /orbdtools/iod/lambert/universal.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lcx366/ORBDTOOLS/HEAD/orbdtools/iod/lambert/universal.py -------------------------------------------------------------------------------- /orbdtools/iod/radar/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lcx366/ORBDTOOLS/HEAD/orbdtools/iod/radar/.DS_Store -------------------------------------------------------------------------------- /orbdtools/iod/radar/__init__.py: -------------------------------------------------------------------------------- 1 | # This file is intentionally empty -------------------------------------------------------------------------------- /orbdtools/iod/radar/fg_series.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lcx366/ORBDTOOLS/HEAD/orbdtools/iod/radar/fg_series.py -------------------------------------------------------------------------------- /orbdtools/iod/radar/gibbs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lcx366/ORBDTOOLS/HEAD/orbdtools/iod/radar/gibbs.py -------------------------------------------------------------------------------- /orbdtools/iod/radar/multifitting.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lcx366/ORBDTOOLS/HEAD/orbdtools/iod/radar/multifitting.py -------------------------------------------------------------------------------- /orbdtools/pod/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lcx366/ORBDTOOLS/HEAD/orbdtools/pod/.DS_Store -------------------------------------------------------------------------------- /orbdtools/pod/__init__.py: -------------------------------------------------------------------------------- 1 | # This file is intentionally empty -------------------------------------------------------------------------------- /orbdtools/transform/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lcx366/ORBDTOOLS/HEAD/orbdtools/transform/.DS_Store -------------------------------------------------------------------------------- /orbdtools/transform/__init__.py: -------------------------------------------------------------------------------- 1 | # This file is intentionally empty -------------------------------------------------------------------------------- /orbdtools/transform/frame_trans.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lcx366/ORBDTOOLS/HEAD/orbdtools/transform/frame_trans.py -------------------------------------------------------------------------------- /orbdtools/transform/kep_rv_trans.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lcx366/ORBDTOOLS/HEAD/orbdtools/transform/kep_rv_trans.py -------------------------------------------------------------------------------- /orbdtools/transform/orbele_trans.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lcx366/ORBDTOOLS/HEAD/orbdtools/transform/orbele_trans.py -------------------------------------------------------------------------------- /orbdtools/utils/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lcx366/ORBDTOOLS/HEAD/orbdtools/utils/.DS_Store -------------------------------------------------------------------------------- /orbdtools/utils/Const.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lcx366/ORBDTOOLS/HEAD/orbdtools/utils/Const.py -------------------------------------------------------------------------------- /orbdtools/utils/__init__.py: -------------------------------------------------------------------------------- 1 | # This file is intentionally empty -------------------------------------------------------------------------------- /orbdtools/utils/data_download.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lcx366/ORBDTOOLS/HEAD/orbdtools/utils/data_download.py -------------------------------------------------------------------------------- /orbdtools/utils/data_prepare.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lcx366/ORBDTOOLS/HEAD/orbdtools/utils/data_prepare.py -------------------------------------------------------------------------------- /orbdtools/utils/math.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lcx366/ORBDTOOLS/HEAD/orbdtools/utils/math.py -------------------------------------------------------------------------------- /orbdtools/utils/preprocessing.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lcx366/ORBDTOOLS/HEAD/orbdtools/utils/preprocessing.py -------------------------------------------------------------------------------- /orbdtools/utils/try_download.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lcx366/ORBDTOOLS/HEAD/orbdtools/utils/try_download.py -------------------------------------------------------------------------------- /readme_figs/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lcx366/ORBDTOOLS/HEAD/readme_figs/.DS_Store -------------------------------------------------------------------------------- /readme_figs/df.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lcx366/ORBDTOOLS/HEAD/readme_figs/df.png -------------------------------------------------------------------------------- /readme_figs/df_epoch.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lcx366/ORBDTOOLS/HEAD/readme_figs/df_epoch.png -------------------------------------------------------------------------------- /readme_figs/tle_statistic.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lcx366/ORBDTOOLS/HEAD/readme_figs/tle_statistic.png -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lcx366/ORBDTOOLS/HEAD/setup.py -------------------------------------------------------------------------------- /test/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lcx366/ORBDTOOLS/HEAD/test/.DS_Store -------------------------------------------------------------------------------- /test/test1/optical_obs.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lcx366/ORBDTOOLS/HEAD/test/test1/optical_obs.dat -------------------------------------------------------------------------------- /test/test1/radar_obs.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lcx366/ORBDTOOLS/HEAD/test/test1/radar_obs.dat -------------------------------------------------------------------------------- /test/test1/tle_20220524.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lcx366/ORBDTOOLS/HEAD/test/test1/tle_20220524.txt -------------------------------------------------------------------------------- /test/test2/T39485_S1_1_C6_1.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lcx366/ORBDTOOLS/HEAD/test/test2/T39485_S1_1_C6_1.dat -------------------------------------------------------------------------------- /test/test2/tle_20220524.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lcx366/ORBDTOOLS/HEAD/test/test2/tle_20220524.txt -------------------------------------------------------------------------------- /test/test3/T22694_S1_1_C5_1.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lcx366/ORBDTOOLS/HEAD/test/test3/T22694_S1_1_C5_1.dat -------------------------------------------------------------------------------- /test/test3/tle_20220325.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lcx366/ORBDTOOLS/HEAD/test/test3/tle_20220325.txt -------------------------------------------------------------------------------- /test/test4/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lcx366/ORBDTOOLS/HEAD/test/test4/.DS_Store -------------------------------------------------------------------------------- /test/test4/T15826_S2_2_C5_2.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lcx366/ORBDTOOLS/HEAD/test/test4/T15826_S2_2_C5_2.dat -------------------------------------------------------------------------------- /test/test4/T20394_S1_3_C6_3.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lcx366/ORBDTOOLS/HEAD/test/test4/T20394_S1_3_C6_3.dat -------------------------------------------------------------------------------- /test/test4/tle_20220325.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lcx366/ORBDTOOLS/HEAD/test/test4/tle_20220325.txt -------------------------------------------------------------------------------- /test/test5/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lcx366/ORBDTOOLS/HEAD/test/test5/.DS_Store -------------------------------------------------------------------------------- /test/test5/T25872_AREL_1.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lcx366/ORBDTOOLS/HEAD/test/test5/T25872_AREL_1.dat -------------------------------------------------------------------------------- /test/test5/T25872_KUN2_2.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lcx366/ORBDTOOLS/HEAD/test/test5/T25872_KUN2_2.dat -------------------------------------------------------------------------------- /test/test5/tle_20220119.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lcx366/ORBDTOOLS/HEAD/test/test5/tle_20220119.txt -------------------------------------------------------------------------------- /test/test6/T38044_S1_1_C1_1.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lcx366/ORBDTOOLS/HEAD/test/test6/T38044_S1_1_C1_1.dat -------------------------------------------------------------------------------- /test/test6/T38044_S1_2_C1_2.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lcx366/ORBDTOOLS/HEAD/test/test6/T38044_S1_2_C1_2.dat -------------------------------------------------------------------------------- /test/test6/tle_20220722.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lcx366/ORBDTOOLS/HEAD/test/test6/tle_20220722.txt --------------------------------------------------------------------------------