m4opt 0.1.0__py3-none-any.whl

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (127) hide show
  1. docs/Makefile +133 -0
  2. docs/_static/css/risk_table.css +45 -0
  3. docs/_static/example.ecsv +304 -0
  4. docs/_static/example.gif +0 -0
  5. docs/conf.py +266 -0
  6. docs/design/index.rst +7 -0
  7. docs/design/milp.rst +348 -0
  8. docs/dev/changes.rst +8 -0
  9. docs/dev/contributing.rst +2 -0
  10. docs/dev/index.rst +12 -0
  11. docs/dev/npr7150.rst +338 -0
  12. docs/dev/related.rst +80 -0
  13. docs/dev/testing.rst +2 -0
  14. docs/guide/cli.rst +10 -0
  15. docs/guide/constraints.rst +12 -0
  16. docs/guide/dynamics.rst +5 -0
  17. docs/guide/fov.rst +189 -0
  18. docs/guide/index.rst +17 -0
  19. docs/guide/milp.rst +7 -0
  20. docs/guide/missions.rst +6 -0
  21. docs/guide/orbit.rst +5 -0
  22. docs/guide/skygrid.rst +81 -0
  23. docs/guide/synphot.rst +40 -0
  24. docs/guide/utils.rst +7 -0
  25. docs/index.rst +55 -0
  26. docs/install/cplex.rst +74 -0
  27. docs/install/deploy.rst +73 -0
  28. docs/install/gurobi.rst +49 -0
  29. docs/install/index.rst +29 -0
  30. docs/make.bat +172 -0
  31. docs/scenarios/dorado.rst +151 -0
  32. docs/scenarios/index.rst +14 -0
  33. docs/scenarios/sedmachine.rst +4 -0
  34. docs/scenarios/ztf.rst +113 -0
  35. licenses/DORADO_LICENSE.txt +249 -0
  36. licenses/LICENSE.rst +26 -0
  37. licenses/README.rst +12 -0
  38. licenses/TEMPLATE_LICENCE.rst +31 -0
  39. m4opt/__init__.py +4 -0
  40. m4opt/_cli/__init__.py +11 -0
  41. m4opt/_cli/animate.py +391 -0
  42. m4opt/_cli/core.py +74 -0
  43. m4opt/_cli/prime.py +19 -0
  44. m4opt/_cli/schedule.py +738 -0
  45. m4opt/_cli/tests/__init__.py +0 -0
  46. m4opt/_cli/tests/conftest.py +14 -0
  47. m4opt/_cli/tests/data/800.fits +2185 -4
  48. m4opt/_cli/tests/test_core.py +70 -0
  49. m4opt/_cli/tests/test_end_to_end.py +86 -0
  50. m4opt/_version.py +21 -0
  51. m4opt/conftest.py +66 -0
  52. m4opt/constraints/__init__.py +12 -0
  53. m4opt/constraints/_body_separation.py +78 -0
  54. m4opt/constraints/_core.py +16 -0
  55. m4opt/constraints/_earth_limb.py +59 -0
  56. m4opt/constraints/_galactic.py +23 -0
  57. m4opt/constraints/tests/__init__.py +0 -0
  58. m4opt/constraints/tests/test_body_separation.py +37 -0
  59. m4opt/constraints/tests/test_earth_limb.py +50 -0
  60. m4opt/constraints/tests/test_galactic.py +19 -0
  61. m4opt/dynamics/__init__.py +12 -0
  62. m4opt/dynamics/_roll.py +156 -0
  63. m4opt/dynamics/_slew.py +175 -0
  64. m4opt/dynamics/tests/__init__.py +0 -0
  65. m4opt/dynamics/tests/test_roll.py +29 -0
  66. m4opt/extern/__init__.py +5 -0
  67. m4opt/fov/__init__.py +3 -0
  68. m4opt/fov/_core.py +357 -0
  69. m4opt/milp.py +324 -0
  70. m4opt/missions/__init__.py +7 -0
  71. m4opt/missions/_core.py +36 -0
  72. m4opt/missions/_ultrasat.py +137 -0
  73. m4opt/missions/_uvex.py +159 -0
  74. m4opt/orbit/__init__.py +5 -0
  75. m4opt/orbit/_core.py +29 -0
  76. m4opt/orbit/_spice.py +69 -0
  77. m4opt/orbit/_tle.py +115 -0
  78. m4opt/py.typed +0 -0
  79. m4opt/skygrid/__init__.py +6 -0
  80. m4opt/skygrid/_geodesic.py +153 -0
  81. m4opt/skygrid/_healpix.py +27 -0
  82. m4opt/skygrid/_sinusoidal.py +45 -0
  83. m4opt/skygrid/_spiral.py +34 -0
  84. m4opt/skygrid/tests/__init__.py +0 -0
  85. m4opt/skygrid/tests/test_skygrid.py +33 -0
  86. m4opt/synphot/__init__.py +10 -0
  87. m4opt/synphot/_detector.py +128 -0
  88. m4opt/synphot/_extinction.py +115 -0
  89. m4opt/synphot/_extrinsic.py +95 -0
  90. m4opt/synphot/_math.py +144 -0
  91. m4opt/synphot/background/__init__.py +16 -0
  92. m4opt/synphot/background/_core.py +4 -0
  93. m4opt/synphot/background/_galactic.py +188 -0
  94. m4opt/synphot/background/_skybright/__init__.py +108 -0
  95. m4opt/synphot/background/_skybright/data/10FebZen.txt +2493 -0
  96. m4opt/synphot/background/_skybright/data/10JunZen.txt +2491 -0
  97. m4opt/synphot/background/_skybright/data/10Nog.txt +2493 -0
  98. m4opt/synphot/background/_skybright/data/10Nwh.txt +2499 -0
  99. m4opt/synphot/background/_skybright/data/10Phx.txt +2493 -0
  100. m4opt/synphot/background/_skybright/data/10Tuc.txt +2499 -0
  101. m4opt/synphot/background/_skybright/data/10Zen.txt +2499 -0
  102. m4opt/synphot/background/_skybright/data/README.rst +12 -0
  103. m4opt/synphot/background/_skybright/data/__init__.py +0 -0
  104. m4opt/synphot/background/_zodiacal/__init__.py +231 -0
  105. m4opt/synphot/background/_zodiacal/data/__init__.py +0 -0
  106. m4opt/synphot/background/_zodiacal/data/leinert_zodi.txt +22 -0
  107. m4opt/synphot/background/_zodiacal/data/stis_zodi_high.ecsv +71 -0
  108. m4opt/synphot/tests/__init__.py +0 -0
  109. m4opt/synphot/tests/test_detector.py +95 -0
  110. m4opt/synphot/tests/test_extinction.py +67 -0
  111. m4opt/tests/__init__.py +0 -0
  112. m4opt/tests/hypothesis.py +40 -0
  113. m4opt/tests/plugins/__init__.py +0 -0
  114. m4opt/tests/plugins/problem_size_limits.py +10 -0
  115. m4opt/tests/test_milp.py +124 -0
  116. m4opt/utils/__init__.py +0 -0
  117. m4opt/utils/console.py +136 -0
  118. m4opt/utils/numpy.py +102 -0
  119. m4opt/utils/resource.py +37 -0
  120. m4opt/utils/tests/__init__.py +0 -0
  121. m4opt/utils/tests/test_console.py +11 -0
  122. m4opt/utils/typing_extensions.py +9 -0
  123. m4opt-0.1.0.dist-info/METADATA +148 -0
  124. m4opt-0.1.0.dist-info/RECORD +127 -0
  125. m4opt-0.1.0.dist-info/WHEEL +5 -0
  126. m4opt-0.1.0.dist-info/entry_points.txt +2 -0
  127. m4opt-0.1.0.dist-info/top_level.txt +4 -0
docs/Makefile ADDED
@@ -0,0 +1,133 @@
1
+ # Makefile for Sphinx documentation
2
+ #
3
+
4
+ # You can set these variables from the command line.
5
+ SPHINXOPTS =
6
+ SPHINXBUILD = sphinx-build
7
+ PAPER =
8
+ BUILDDIR = _build
9
+
10
+ # Internal variables.
11
+ PAPEROPT_a4 = -D latex_paper_size=a4
12
+ PAPEROPT_letter = -D latex_paper_size=letter
13
+ ALLSPHINXOPTS = -d $(BUILDDIR)/doctrees $(PAPEROPT_$(PAPER)) $(SPHINXOPTS) .
14
+
15
+ .PHONY: help clean html dirhtml singlehtml pickle json htmlhelp qthelp devhelp epub latex latexpdf text man changes linkcheck doctest
16
+
17
+ #This is needed with git because git doesn't create a dir if it's empty
18
+ $(shell [ -d "_static" ] || mkdir -p _static)
19
+
20
+ help:
21
+ @echo "Please use \`make <target>' where <target> is one of"
22
+ @echo " html to make standalone HTML files"
23
+ @echo " dirhtml to make HTML files named index.html in directories"
24
+ @echo " singlehtml to make a single large HTML file"
25
+ @echo " pickle to make pickle files"
26
+ @echo " json to make JSON files"
27
+ @echo " htmlhelp to make HTML files and a HTML help project"
28
+ @echo " qthelp to make HTML files and a qthelp project"
29
+ @echo " devhelp to make HTML files and a Devhelp project"
30
+ @echo " epub to make an epub"
31
+ @echo " latex to make LaTeX files, you can set PAPER=a4 or PAPER=letter"
32
+ @echo " latexpdf to make LaTeX files and run them through pdflatex"
33
+ @echo " text to make text files"
34
+ @echo " man to make manual pages"
35
+ @echo " changes to make an overview of all changed/added/deprecated items"
36
+ @echo " linkcheck to check all external links for integrity"
37
+
38
+ clean:
39
+ -rm -rf $(BUILDDIR)
40
+ -rm -rf api
41
+ -rm -rf generated
42
+
43
+ html:
44
+ $(SPHINXBUILD) -b html $(ALLSPHINXOPTS) $(BUILDDIR)/html
45
+ @echo
46
+ @echo "Build finished. The HTML pages are in $(BUILDDIR)/html."
47
+
48
+ dirhtml:
49
+ $(SPHINXBUILD) -b dirhtml $(ALLSPHINXOPTS) $(BUILDDIR)/dirhtml
50
+ @echo
51
+ @echo "Build finished. The HTML pages are in $(BUILDDIR)/dirhtml."
52
+
53
+ singlehtml:
54
+ $(SPHINXBUILD) -b singlehtml $(ALLSPHINXOPTS) $(BUILDDIR)/singlehtml
55
+ @echo
56
+ @echo "Build finished. The HTML page is in $(BUILDDIR)/singlehtml."
57
+
58
+ pickle:
59
+ $(SPHINXBUILD) -b pickle $(ALLSPHINXOPTS) $(BUILDDIR)/pickle
60
+ @echo
61
+ @echo "Build finished; now you can process the pickle files."
62
+
63
+ json:
64
+ $(SPHINXBUILD) -b json $(ALLSPHINXOPTS) $(BUILDDIR)/json
65
+ @echo
66
+ @echo "Build finished; now you can process the JSON files."
67
+
68
+ htmlhelp:
69
+ $(SPHINXBUILD) -b htmlhelp $(ALLSPHINXOPTS) $(BUILDDIR)/htmlhelp
70
+ @echo
71
+ @echo "Build finished; now you can run HTML Help Workshop with the" \
72
+ ".hhp project file in $(BUILDDIR)/htmlhelp."
73
+
74
+ qthelp:
75
+ $(SPHINXBUILD) -b qthelp $(ALLSPHINXOPTS) $(BUILDDIR)/qthelp
76
+ @echo
77
+ @echo "Build finished; now you can run "qcollectiongenerator" with the" \
78
+ ".qhcp project file in $(BUILDDIR)/qthelp, like this:"
79
+ @echo "# qcollectiongenerator $(BUILDDIR)/qthelp/Astropy.qhcp"
80
+ @echo "To view the help file:"
81
+ @echo "# assistant -collectionFile $(BUILDDIR)/qthelp/Astropy.qhc"
82
+
83
+ devhelp:
84
+ $(SPHINXBUILD) -b devhelp $(ALLSPHINXOPTS) $(BUILDDIR)/devhelp
85
+ @echo
86
+ @echo "Build finished."
87
+ @echo "To view the help file:"
88
+ @echo "# mkdir -p $$HOME/.local/share/devhelp/Astropy"
89
+ @echo "# ln -s $(BUILDDIR)/devhelp $$HOME/.local/share/devhelp/Astropy"
90
+ @echo "# devhelp"
91
+
92
+ epub:
93
+ $(SPHINXBUILD) -b epub $(ALLSPHINXOPTS) $(BUILDDIR)/epub
94
+ @echo
95
+ @echo "Build finished. The epub file is in $(BUILDDIR)/epub."
96
+
97
+ latex:
98
+ $(SPHINXBUILD) -b latex $(ALLSPHINXOPTS) $(BUILDDIR)/latex
99
+ @echo
100
+ @echo "Build finished; the LaTeX files are in $(BUILDDIR)/latex."
101
+ @echo "Run \`make' in that directory to run these through (pdf)latex" \
102
+ "(use \`make latexpdf' here to do that automatically)."
103
+
104
+ latexpdf:
105
+ $(SPHINXBUILD) -b latex $(ALLSPHINXOPTS) $(BUILDDIR)/latex
106
+ @echo "Running LaTeX files through pdflatex..."
107
+ make -C $(BUILDDIR)/latex all-pdf
108
+ @echo "pdflatex finished; the PDF files are in $(BUILDDIR)/latex."
109
+
110
+ text:
111
+ $(SPHINXBUILD) -b text $(ALLSPHINXOPTS) $(BUILDDIR)/text
112
+ @echo
113
+ @echo "Build finished. The text files are in $(BUILDDIR)/text."
114
+
115
+ man:
116
+ $(SPHINXBUILD) -b man $(ALLSPHINXOPTS) $(BUILDDIR)/man
117
+ @echo
118
+ @echo "Build finished. The manual pages are in $(BUILDDIR)/man."
119
+
120
+ changes:
121
+ $(SPHINXBUILD) -b changes $(ALLSPHINXOPTS) $(BUILDDIR)/changes
122
+ @echo
123
+ @echo "The overview file is in $(BUILDDIR)/changes."
124
+
125
+ linkcheck:
126
+ $(SPHINXBUILD) -b linkcheck $(ALLSPHINXOPTS) $(BUILDDIR)/linkcheck
127
+ @echo
128
+ @echo "Link check complete; look for any errors in the above output " \
129
+ "or in $(BUILDDIR)/linkcheck/output.txt."
130
+
131
+ doctest:
132
+ @echo "Run 'python setup.py test' in the root directory to run doctests " \
133
+ @echo "in the documentation."
@@ -0,0 +1,45 @@
1
+ table.risktable tr:nth-child(3) td:nth-child(1) {
2
+ vertical-align: top;
3
+ }
4
+
5
+ table.risktable tr:nth-child(3) td:nth-child(1) p {
6
+ transform: rotate(90deg);
7
+ width: 0.5rlh;
8
+ }
9
+
10
+ table.risktable tr:nth-child(3) td:nth-child(3),
11
+ table.risktable tr:nth-child(4) td:nth-child(2),
12
+ table.risktable tr:nth-child(5) td:nth-child(2),
13
+ table.risktable tr:nth-child(6) td:nth-child(2),
14
+ table.risktable tr:nth-child(7) td:nth-child(2),
15
+ table.risktable tr:nth-child(5) td:nth-child(3),
16
+ table.risktable tr:nth-child(6) td:nth-child(3),
17
+ table.risktable tr:nth-child(7) td:nth-child(3),
18
+ table.risktable tr:nth-child(7) td:nth-child(4),
19
+ table.risktable tr:nth-child(7) td:nth-child(5)
20
+ {
21
+ background-color: palegreen;
22
+ }
23
+
24
+ table.risktable tr:nth-child(3) td:nth-child(4),
25
+ table.risktable tr:nth-child(4) td:nth-child(3),
26
+ table.risktable tr:nth-child(4) td:nth-child(4),
27
+ table.risktable tr:nth-child(5) td:nth-child(4),
28
+ table.risktable tr:nth-child(5) td:nth-child(5),
29
+ table.risktable tr:nth-child(6) td:nth-child(4),
30
+ table.risktable tr:nth-child(6) td:nth-child(5),
31
+ table.risktable tr:nth-child(6) td:nth-child(6),
32
+ table.risktable tr:nth-child(7) td:nth-child(6)
33
+ {
34
+ background-color: lightyellow;
35
+ }
36
+
37
+ table.risktable tr:nth-child(3) td:nth-child(5),
38
+ table.risktable tr:nth-child(3) td:nth-child(6),
39
+ table.risktable tr:nth-child(3) td:nth-child(7),
40
+ table.risktable tr:nth-child(4) td:nth-child(5),
41
+ table.risktable tr:nth-child(4) td:nth-child(6),
42
+ table.risktable tr:nth-child(5) td:nth-child(6)
43
+ {
44
+ background-color: lightcoral;
45
+ }
@@ -0,0 +1,304 @@
1
+ # %ECSV 1.0
2
+ # ---
3
+ # datatype:
4
+ # - {name: action, datatype: string, description: Action for the spacecraft}
5
+ # - {name: start_time, datatype: string, description: Start time of segment}
6
+ # - {name: duration, unit: s, datatype: float64, description: Duration of segment}
7
+ # - {name: observer_location.x, unit: km, datatype: float64, description: Position of the spacecraft}
8
+ # - {name: observer_location.y, unit: km, datatype: float64, description: Position of the spacecraft}
9
+ # - {name: observer_location.z, unit: km, datatype: float64, description: Position of the spacecraft}
10
+ # - {name: target_coord.ra, unit: deg, datatype: float64}
11
+ # - {name: target_coord.dec, unit: deg, datatype: float64}
12
+ # - {name: roll, unit: deg, datatype: float64, description: Position angle of the FOV}
13
+ # meta: !!omap
14
+ # - {command: /Users/lpsinger/src/m4opt/.vscode/env/bin/m4opt schedule bayestar.multiorder.fits docs/_static/example.ecsv --delay 6hour
15
+ # --deadline 24hour --timelimit 10min --absmag -10 --bandpass NUV --jobs 12}
16
+ # - {version: 0.1.dev410+g8ee8f45.d20241224}
17
+ # - args:
18
+ # absmag: -10.0
19
+ # bandpass: NUV
20
+ # deadline: !astropy.units.Quantity
21
+ # unit: &id001 !astropy.units.Unit {unit: h}
22
+ # value: 24.0
23
+ # delay: !astropy.units.Quantity
24
+ # unit: *id001
25
+ # value: 6.0
26
+ # exptime_max: !astropy.units.Quantity
27
+ # unit: &id002 !astropy.units.Unit {unit: s}
28
+ # value: .inf
29
+ # exptime_min: !astropy.units.Quantity
30
+ # unit: *id002
31
+ # value: 900.0
32
+ # mission: uvex
33
+ # nside: 512
34
+ # skymap: bayestar.multiorder.fits
35
+ # time_step: !astropy.units.Quantity
36
+ # unit: !astropy.units.Unit {unit: min}
37
+ # value: 1.0
38
+ # visits: 2
39
+ # - {objective_value: 0.888657664939189}
40
+ # - {best_bound: 0.9041650782780215}
41
+ # - {solution_status: time limit exceeded}
42
+ # - solution_time: !astropy.units.Quantity
43
+ # unit: *id002
44
+ # value: 761.0696609020233
45
+ # - total_time:
46
+ # observe: !astropy.units.Quantity
47
+ # unit: *id002
48
+ # value: 47345.2733371278
49
+ # slack: !astropy.units.Quantity
50
+ # unit: *id002
51
+ # value: 2.4300561562995426e-10
52
+ # slew: !astropy.units.Quantity
53
+ # unit: *id002
54
+ # value: 17454.726662871948
55
+ # - __serialized_columns__:
56
+ # duration:
57
+ # __class__: astropy.units.quantity.Quantity
58
+ # unit: !astropy.units.Unit {unit: s}
59
+ # value: !astropy.table.SerializedColumn {name: duration}
60
+ # observer_location:
61
+ # __class__: astropy.coordinates.earth.EarthLocation
62
+ # __info__: {description: Position of the spacecraft}
63
+ # ellipsoid: WGS84
64
+ # x: !astropy.table.SerializedColumn
65
+ # __class__: astropy.units.quantity.Quantity
66
+ # __info__: {description: Position of the spacecraft}
67
+ # unit: &id003 !astropy.units.Unit {unit: km}
68
+ # value: !astropy.table.SerializedColumn
69
+ # __class__: astropy.utils.masked.core.MaskedNDArray
70
+ # data: !astropy.table.SerializedColumn {name: observer_location.x}
71
+ # y: !astropy.table.SerializedColumn
72
+ # __class__: astropy.units.quantity.Quantity
73
+ # __info__: {description: Position of the spacecraft}
74
+ # unit: *id003
75
+ # value: !astropy.table.SerializedColumn
76
+ # __class__: astropy.utils.masked.core.MaskedNDArray
77
+ # data: !astropy.table.SerializedColumn {name: observer_location.y}
78
+ # z: !astropy.table.SerializedColumn
79
+ # __class__: astropy.units.quantity.Quantity
80
+ # __info__: {description: Position of the spacecraft}
81
+ # unit: *id003
82
+ # value: !astropy.table.SerializedColumn
83
+ # __class__: astropy.utils.masked.core.MaskedNDArray
84
+ # data: !astropy.table.SerializedColumn {name: observer_location.z}
85
+ # roll:
86
+ # __class__: astropy.units.quantity.Quantity
87
+ # __info__: {description: Position angle of the FOV}
88
+ # unit: &id004 !astropy.units.Unit {unit: deg}
89
+ # value: !astropy.table.SerializedColumn
90
+ # __class__: astropy.utils.masked.core.MaskedNDArray
91
+ # data: !astropy.table.SerializedColumn {name: roll}
92
+ # start_time:
93
+ # __class__: astropy.time.core.Time
94
+ # format: iso
95
+ # in_subfmt: '*'
96
+ # out_subfmt: '*'
97
+ # precision: 3
98
+ # scale: utc
99
+ # value: !astropy.table.SerializedColumn {name: start_time}
100
+ # target_coord:
101
+ # __class__: astropy.coordinates.sky_coordinate.SkyCoord
102
+ # __info__: {description: Coordinates of the center of the FOV}
103
+ # dec: !astropy.table.SerializedColumn
104
+ # __class__: astropy.coordinates.angles.core.Latitude
105
+ # unit: *id004
106
+ # value: !astropy.table.SerializedColumn
107
+ # __class__: astropy.utils.masked.core.MaskedNDArray
108
+ # data: !astropy.table.SerializedColumn {name: target_coord.dec}
109
+ # frame: icrs
110
+ # ra: !astropy.table.SerializedColumn
111
+ # __class__: astropy.coordinates.angles.core.Longitude
112
+ # unit: *id004
113
+ # value: !astropy.table.SerializedColumn
114
+ # __class__: astropy.utils.masked.core.MaskedNDArray
115
+ # data: !astropy.table.SerializedColumn {name: target_coord.ra}
116
+ # wrap_angle: !astropy.coordinates.Angle
117
+ # unit: *id004
118
+ # value: 360.0
119
+ # representation_type: spherical
120
+ # schema: astropy-2.0
121
+ action start_time duration observer_location.x observer_location.y observer_location.z target_coord.ra target_coord.dec roll
122
+ observe "2024-09-10 20:16:22.062" 456.9856621796897 73916.49141008391 229808.5733098768 -243167.90662067 42.15284161534851 -6.786561817485434 -90.94298116374712
123
+ slew "2024-09-10 20:23:59.047" 170.34613333995546 "" "" "" "" "" ""
124
+ observe "2024-09-10 20:26:49.393" 500.3861697233204 84010.60256446122 226536.81693927487 -243068.1365143315 46.29652655972394 6.961319008728212 -100.03711641082718
125
+ slew "2024-09-10 20:35:09.779" 156.72045598705722 "" "" "" "" "" ""
126
+ observe "2024-09-10 20:37:46.500" 573.6032256335202 94428.81793790932 222633.8125603219 -242962.61941100043 54.33817517522616 19.423766314844226 -103.46784729333226
127
+ slew "2024-09-10 20:47:20.103" 128.69524811949296 "" "" "" "" "" ""
128
+ observe "2024-09-10 20:49:28.798" 584.4248781640642 105363.19830049854 217932.16425916908 -242848.70241050667 55.108458927935075 31.568012457992708 -107.18890405248577
129
+ slew "2024-09-10 20:59:13.223" 225.30240696125995 "" "" "" "" "" ""
130
+ observe "2024-09-10 21:02:58.526" 584.4248781640644 117678.79863582492 211844.51388208324 -242715.89569255363 49.034245797032796 11.206064903815145 -101.6990401397167
131
+ slew "2024-09-10 21:12:42.951" 27.910753533250123 "" "" "" "" "" ""
132
+ observe "2024-09-10 21:13:10.861" 584.4248781640644 126761.35392319498 206776.96976821666 -242614.42388300042 51.581331268991164 12.306531453813928 -101.47052585658298
133
+ slew "2024-09-10 21:22:55.286" 727.0315270231314 "" "" "" "" "" ""
134
+ observe "2024-09-10 21:35:02.318" 470.1927592620778 145459.52128277282 194623.36165883805 -242394.08978601458 44.029253488661475 83.19078340060851 -125.13676916650773
135
+ slew "2024-09-10 21:42:52.510" 957.4865640209586 "" "" "" "" "" ""
136
+ observe "2024-09-10 21:58:49.997" 480.10178369989836 164489.5917292338 179472.26308688073 -242149.57385387603 37.29835214529275 -5.733321558320858 -91.35819309566087
137
+ slew "2024-09-10 22:06:50.099" 201.28173441907975 "" "" "" "" "" ""
138
+ observe "2024-09-10 22:10:11.381" 500.3861697233204 173029.04848072137 171575.20228950208 -242031.1669330661 48.81647558422206 8.092511281525729 -100.10057639301098
139
+ slew "2024-09-10 22:18:31.767" 33.650858381607 "" "" "" "" "" ""
140
+ observe "2024-09-10 22:19:05.418" 500.3861697233204 179458.0774680327 165100.29846965274 -241937.59485353972 46.52257909778204 10.089561127937632 -101.83133314464916
141
+ slew "2024-09-10 22:27:25.804" 148.52786892957917 "" "" "" "" "" ""
142
+ observe "2024-09-10 22:29:54.332" 480.10178369989836 186943.3169655061 156908.47254494886 -241822.98448506265 45.22004203604114 -2.4615782194355678 -94.1626940100043
143
+ slew "2024-09-10 22:37:54.433" 65.57705370156295 "" "" "" "" "" ""
144
+ observe "2024-09-10 22:39:00.010" 475.64107486787714 192949.10655892998 149755.86063057015 -241725.83539120894 43.499084706313404 2.67147811090094 -97.77860094567748
145
+ slew "2024-09-10 22:46:55.652" 158.78323993113437 "" "" "" "" "" ""
146
+ observe "2024-09-10 22:49:34.435" 480.10178369989836 199587.13330092482 141150.94855585572 -241612.00084322528 36.06486308465719 -8.367291815535209 -88.80146209755162
147
+ slew "2024-09-10 22:57:34.537" 39.05748727943833 "" "" "" "" "" ""
148
+ observe "2024-09-10 22:58:13.594" 480.10178369989836 204734.3259110815 133889.13955718072 -241518.14034352527 34.820496611219376 -10.99003219260816 -86.0456237679735
149
+ slew "2024-09-10 23:06:13.696" 183.77169070281113 "" "" "" "" "" ""
150
+ observe "2024-09-10 23:09:17.468" 480.10178369989836 210930.47902515536 124330.13999901971 -241397.1890310914 45.645458461637844 0.6835001010377355 -96.20930534676813
151
+ slew "2024-09-10 23:17:17.569" 37.75495034643903 "" "" "" "" "" ""
152
+ observe "2024-09-10 23:17:55.324" 480.10178369989836 215454.68903131946 116672.85968476793 -241302.1185382931 46.00400821099493 3.825202174294121 -98.1653941360875
153
+ slew "2024-09-10 23:25:55.426" 84.50797051726612 "" "" "" "" "" ""
154
+ observe "2024-09-10 23:27:19.934" 480.10178369989836 220070.40293989974 108136.38496138742 -241197.74450827655 40.620539077079684 -1.6482077980116367 -94.84974966632696
155
+ slew "2024-09-10 23:35:20.036" 201.96928492707116 "" "" "" "" "" ""
156
+ observe "2024-09-10 23:38:42.005" 584.4248781640644 225194.57930445965 97580.80331500778 -241070.65516120006 49.013934338214085 14.185888625291845 -103.23611768674706
157
+ slew "2024-09-10 23:48:26.430" 102.28743291722371 "" "" "" "" "" ""
158
+ observe "2024-09-10 23:50:08.717" 573.6032256335202 229842.059392748 86707.21445582087 -240941.5952354002 54.44233812607509 22.436561766854325 -104.53487683491885
159
+ slew "2024-09-10 23:59:42.321" 80.71455444765694 "" "" "" "" "" ""
160
+ observe "2024-09-11 00:01:03.035" 584.4248781640642 233781.8908925422 76139.40865447893 -240817.59235157128 51.64298625363395 15.328438847395628 -102.83026592491849
161
+ slew "2024-09-11 00:10:47.460" 393.6391287653787 "" "" "" "" "" ""
162
+ observe "2024-09-11 00:17:21.099" 480.10178369989836 238762.24862068114 60014.30906483036 -240630.3608575376 33.559230981567396 -13.599190034707608 -83.09747929753544
163
+ slew "2024-09-11 00:25:21.201" 215.10067060471133 "" "" "" "" "" ""
164
+ observe "2024-09-11 00:28:56.302" 472.90533459427553 241627.22139348782 48349.517435173955 -240495.91410349336 41.018847175264305 1.5103980713443672 -97.2634893025635
165
+ slew "2024-09-11 00:36:49.207" 67.54083732837945 "" "" "" "" "" ""
166
+ observe "2024-09-11 00:37:56.748" 480.10178369989836 243460.8857809614 39184.862233344866 -240390.6140850711 42.67415059531241 -3.6330309714530613 -93.32375269226814
167
+ slew "2024-09-11 00:45:56.850" 29.45545571541711 "" "" "" "" "" ""
168
+ observe "2024-09-11 00:46:26.305" 480.10178369989836 244871.24432491456 30479.567591866926 -240290.70653987097 40.14748822188107 -4.807868899953369 -92.3285349092325
169
+ slew "2024-09-11 00:54:26.407" 283.7894321371858 "" "" "" "" "" ""
170
+ observe "2024-09-11 00:59:10.196" 443.39046463536357 246401.49949771556 17336.681150190216 -240139.7955156065 26.216266515208282 -21.57343660886085 -70.5769962719867
171
+ slew "2024-09-11 01:06:33.587" 43.588582131452576 "" "" "" "" "" ""
172
+ observe "2024-09-11 01:07:17.175" 444.5129027202099 247008.89147290174 8915.257812928017 -240042.87880103628 27.619894226114585 -19.09935195096668 -74.3383858524921
173
+ slew "2024-09-11 01:14:41.688" 381.4274867203059 "" "" "" "" "" ""
174
+ observe "2024-09-11 01:21:03.116" 486.15343489419996 247380.0746542973 -5412.2740747969165 -239877.23851383783 48.53578391310462 4.969554252994564 -98.43188480160677
175
+ slew "2024-09-11 01:29:09.269" 178.08958780350085 "" "" "" "" "" ""
176
+ observe "2024-09-11 01:32:07.359" 456.9856621796897 247075.25363129866 -16947.480904254113 -239742.8729293161 39.189066922436915 -7.664658476365088 -89.88957795933614
177
+ slew "2024-09-11 01:39:44.344" 436.62212313007257 "" "" "" "" "" ""
178
+ observe "2024-09-11 01:47:00.967" 584.4248781640642 245815.9709339564 -32436.152883775012 -239560.490612466 54.82263498337261 28.510879509886248 -106.4086067694725
179
+ slew "2024-09-11 01:56:45.391" 32.571812861661485 "" "" "" "" "" ""
180
+ observe "2024-09-11 01:57:17.963" 584.4248781640642 244379.05051284298 -43081.54149375856 -239433.48032855015 54.60246395505786 25.46629738784264 -105.51947480416885
181
+ slew "2024-09-11 02:07:02.388" 32.73550328270291 "" "" "" "" "" ""
182
+ observe "2024-09-11 02:07:35.124" 584.4248781640642 242480.06007846422 -53666.69571344674 -239305.5520076148 51.83523339796859 27.30975696112139 -107.67132407617947
183
+ slew "2024-09-11 02:17:19.548" 65.2256524302793 "" "" "" "" "" ""
184
+ observe "2024-09-11 02:18:24.774" 584.4248781640642 239985.27054854765 -64718.9313812461 -239169.93437138016 51.64538325729731 21.281561643174676 -105.39791356876485
185
+ slew "2024-09-11 02:28:09.199" 32.89417332874549 "" "" "" "" "" ""
186
+ observe "2024-09-11 02:28:42.093" 584.4248781640642 237147.22808188922 -75114.61337375426 -239040.15979264778 51.71563654042319 24.28713862936033 -106.57754144701306
187
+ slew "2024-09-11 02:38:26.518" 52.28479175994957 "" "" "" "" "" ""
188
+ observe "2024-09-11 02:39:18.803" 584.4248781640642 233747.74065721268 -85706.7983241746 -238905.38457413358 48.876977543850515 20.078165522081523 -106.1676119291135
189
+ slew "2024-09-11 02:49:03.228" 33.31730569644205 "" "" "" "" "" ""
190
+ observe "2024-09-11 02:49:36.545" 584.4248781640644 229996.69037191643 -95837.11771171202 -238773.72811355913 48.92685865246261 17.121306948855437 -104.7286865686888
191
+ slew "2024-09-11 02:59:20.970" 51.78104676842462 "" "" "" "" "" ""
192
+ observe "2024-09-11 03:00:12.751" 500.3861697233204 225674.0407097882 -106098.9149431771 -238637.2148878603 46.39949736674414 13.004514273409587 -103.54252266121439
193
+ slew "2024-09-11 03:08:33.137" 87.09422438334417 "" "" "" "" "" ""
194
+ observe "2024-09-11 03:10:00.231" 484.44623018929644 221275.06857867754 -115402.52972436865 -238510.32714803217 43.80647482381772 5.818517442575301 -99.8641264988171
195
+ slew "2024-09-11 03:18:04.678" 310.94620307865483 "" "" "" "" "" ""
196
+ observe "2024-09-11 03:23:15.624" 584.4248781640644 214708.55128197186 -127705.69798427241 -238337.26505956802 32.275138467974266 -16.192368840244534 -79.9667303901701
197
+ slew "2024-09-11 03:33:00.049" 101.6225787368978 "" "" "" "" "" ""
198
+ observe "2024-09-11 03:34:41.671" 449.99688484865203 208493.6782652391 -138019.39822101823 -238186.8237949458 37.982584951862634 -10.344971596335911 -87.38687653378425
199
+ slew "2024-09-11 03:42:11.668" 932.3640535323364 "" "" "" "" "" ""
200
+ observe "2024-09-11 03:57:44.032" 584.4248781640644 194478.5868409162 -157859.16395903524 -237880.40191467115 58.34652468736791 75.27886480188815 -111.0808833784616
201
+ slew "2024-09-11 04:07:28.457" 54.68752021215754 "" "" "" "" "" ""
202
+ observe "2024-09-11 04:08:23.145" 470.1927592620778 187352.11670519167 -166563.57393558093 -237737.2490670764 46.822845957040975 80.13607678930693 -122.38712832778684
203
+ slew "2024-09-11 04:16:13.337" 83.93484887868162 "" "" "" "" "" ""
204
+ observe "2024-09-11 04:17:37.272" 456.4834281474486 180856.8114100678 -173850.96824960315 -237612.37343873875 350.0463436737149 85.87344091048473 -178.76561177919638
205
+ slew "2024-09-11 04:25:13.756" 31.734745261825417 "" "" "" "" "" ""
206
+ observe "2024-09-11 04:25:45.490" 456.4834281474486 174898.37381634436 -180062.18168728342 -237501.76778011065 36.086439911519065 86.17138669766064 -132.95265731428003
207
+ slew "2024-09-11 04:33:21.974" 55.55348242106342 "" "" "" "" "" ""
208
+ observe "2024-09-11 04:34:17.527" 456.4834281474486 168419.68537127215 -186356.99924695003 -237385.1796488041 306.79537025973065 86.0022157464731 138.15622504608655
209
+ slew "2024-09-11 04:41:54.011" 957.8069041008189 "" "" "" "" "" ""
210
+ observe "2024-09-11 04:57:51.818" 475.64107486787714 149370.93950605122 -202508.29951166894 -237060.03813897585 43.12203817271233 -0.47971522602544153 -95.6004747375685
211
+ slew "2024-09-11 05:05:47.459" 28.989282884794612 "" "" "" "" "" ""
212
+ observe "2024-09-11 05:06:16.448" 480.10178369989836 142189.24266077168 -207808.84436809077 -236942.91923499876 40.620539077079684 -1.6482077980116367 -94.84974966632696
213
+ slew "2024-09-11 05:14:16.550" 67.49368648252671 "" "" "" "" "" ""
214
+ observe "2024-09-11 05:15:24.043" 456.9856621796897 134183.00101700652 -213272.34675340905 -236815.17152657572 42.15284161534851 -6.786561817485434 -90.94298116374712
215
+ slew "2024-09-11 05:23:01.029" 170.34613333995546 "" "" "" "" "" ""
216
+ observe "2024-09-11 05:25:51.375" 500.3861697233204 124752.92154823814 -219151.80133760406 -236667.98244349103 46.29652655972394 6.961319008728212 -100.03711641082718
217
+ slew "2024-09-11 05:34:11.761" 247.3928414268224 "" "" "" "" "" ""
218
+ observe "2024-09-11 05:38:19.154" 584.4248781640642 113176.24812385565 -225614.35510856032 -236491.36275751848 54.82263498337261 28.510879509886248 -106.4086067694725
219
+ slew "2024-09-11 05:48:03.579" 112.50976429886191 "" "" "" "" "" ""
220
+ observe "2024-09-11 05:49:56.089" 584.4248781640642 102083.75283402212 -231087.2034168223 -236325.60734002292 51.62174186833757 18.294798876262448 -104.14466131012549
221
+ slew "2024-09-11 05:59:40.514" 158.2088662326058 "" "" "" "" "" ""
222
+ observe "2024-09-11 06:02:18.723" 484.44623018929644 89972.32064471663 -236318.2569526153 -236147.76899234037 43.80647482381772 5.818517442575301 -99.8641264988171
223
+ slew "2024-09-11 06:10:23.169" 33.75568911061149 "" "" "" "" "" ""
224
+ observe "2024-09-11 06:10:56.925" 480.10178369989836 81359.77864547163 -239593.16640715982 -236022.9340687954 46.00400821099493 3.825202174294121 -98.1653941360875
225
+ slew "2024-09-11 06:18:57.026" 233.82046402951644 "" "" "" "" "" ""
226
+ observe "2024-09-11 06:22:50.847" 584.4248781640642 69300.63249290184 -243589.74255109674 -235849.9532249736 51.71563654042319 24.28713862936033 -106.57754144701306
227
+ slew "2024-09-11 06:32:35.272" 630.3891034195696 "" "" "" "" "" ""
228
+ observe "2024-09-11 06:43:05.661" 443.39046463536357 48343.95530090749 -248989.2479134482 -235552.9562649289 26.216266515208282 -21.57343660886085 -70.5769962719867
229
+ slew "2024-09-11 06:50:29.051" 520.2829101411137 "" "" "" "" "" ""
230
+ observe "2024-09-11 06:59:09.334" 584.4248781640644 31414.041573470808 -251991.8415806698 -235314.98569367497 49.013934338214085 14.185888625291845 -103.23611768674706
231
+ slew "2024-09-11 07:08:53.759" 51.9086183467039 "" "" "" "" "" ""
232
+ observe "2024-09-11 07:09:45.668" 500.3861697233204 20127.802802459533 -253344.005753946 -235156.70001816508 46.52257909778204 10.089561127937632 -101.83133314464916
233
+ slew "2024-09-11 07:18:06.054" 27.793875903809468 "" "" "" "" "" ""
234
+ observe "2024-09-11 07:18:33.848" 584.4248781640644 10714.18439357569 -254082.2584010694 -235024.6239273785 49.034245797032796 11.206064903815145 -101.6990401397167
235
+ slew "2024-09-11 07:28:18.273" 233.11105026974874 "" "" "" "" "" ""
236
+ observe "2024-09-11 07:32:11.384" 480.10178369989836 -3906.155317558813 -254534.2641777276 -234818.95325164197 37.29835214529275 -5.733321558320858 -91.35819309566087
237
+ slew "2024-09-11 07:40:11.485" 76.74816216912556 "" "" "" "" "" ""
238
+ observe "2024-09-11 07:41:28.234" 480.10178369989836 -13877.562555874309 -254360.17626539702 -234678.00362671766 34.820496611219376 -10.99003219260816 -86.0456237679735
239
+ slew "2024-09-11 07:49:28.335" 39.87540406036602 "" "" "" "" "" ""
240
+ observe "2024-09-11 07:50:08.211" 480.10178369989836 -23182.529389138454 -253844.58612165297 -234545.75813959082 33.559230981567396 -13.599190034707608 -83.09747929753544
241
+ slew "2024-09-11 07:58:08.313" 106.7075705815824 "" "" "" "" "" ""
242
+ observe "2024-09-11 07:59:55.020" 444.5129027202099 -33660.293530706855 -252853.51378522432 -234395.7862387216 27.619894226114585 -19.09935195096668 -74.3383858524921
243
+ slew "2024-09-11 08:07:19.533" 1209.3535117219878 "" "" "" "" "" ""
244
+ observe "2024-09-11 08:27:28.887" 456.4834281474486 -62907.429937594636 -247736.83904083187 -233968.9511963391 350.0463436737149 85.87344091048473 -178.76561177919638
245
+ slew "2024-09-11 08:35:05.370" 31.734745261825417 "" "" "" "" "" ""
246
+ observe "2024-09-11 08:35:37.105" 456.4834281474486 -71419.13743200811 -245576.3313251027 -233841.77989972147 36.086439911519065 86.17138669766064 -132.95265731428003
247
+ slew "2024-09-11 08:43:13.588" 113.21294070299793 "" "" "" "" "" ""
248
+ observe "2024-09-11 08:45:06.801" 584.4248781640644 -81257.19515861887 -242685.24179825297 -233692.71161668966 58.34652468736791 75.27886480188815 -111.0808833784616
249
+ slew "2024-09-11 08:54:51.226" 54.68752021215754 "" "" "" "" "" ""
250
+ observe "2024-09-11 08:55:45.913" 470.1927592620778 -92154.38073652874 -238972.40501259724 -233524.6172029264 46.822845957040975 80.13607678930693 -122.38712832778684
251
+ slew "2024-09-11 09:03:36.106" 113.15490846987021 "" "" "" "" "" ""
252
+ observe "2024-09-11 09:05:29.261" 456.4834281474486 -101953.6296604178 -235155.62959906735 -233370.39419936005 306.79537025973065 86.0022157464731 138.15622504608655
253
+ slew "2024-09-11 09:13:05.745" 83.69463770060435 "" "" "" "" "" ""
254
+ observe "2024-09-11 09:14:29.439" 470.1927592620778 -110887.40791623812 -231262.33954822939 -233226.9079156963 44.029253488661475 83.19078340060851 -125.13676916650773
255
+ slew "2024-09-11 09:22:19.632" 862.3492171336562 "" "" "" "" "" ""
256
+ observe "2024-09-11 09:36:41.981" 480.10178369989836 -132264.12529853886 -220216.61016308737 -232870.17078678097 45.645458461637844 0.6835001010377355 -96.20930534676813
257
+ slew "2024-09-11 09:44:42.083" 121.39510312453346 "" "" "" "" "" ""
258
+ observe "2024-09-11 09:46:43.478" 456.9856621796897 -141566.02090005964 -214576.99933413087 -232707.8502024464 39.189066922436915 -7.664658476365088 -89.88957795933614
259
+ slew "2024-09-11 09:54:20.464" 136.30641026393684 "" "" "" "" "" ""
260
+ observe "2024-09-11 09:56:36.770" 475.64107486787714 -150505.7767970403 -208628.7245096807 -232546.95710490103 43.499084706313404 2.67147811090094 -97.77860094567748
261
+ slew "2024-09-11 10:04:32.411" 39.03126819997693 "" "" "" "" "" ""
262
+ observe "2024-09-11 10:05:11.442" 475.64107486787714 -158059.1683349899 -203166.1030004711 -232406.75241198431 43.12203817271233 -0.47971522602544153 -95.6004747375685
263
+ slew "2024-09-11 10:13:07.084" 39.554950519322304 "" "" "" "" "" ""
264
+ observe "2024-09-11 10:13:46.638" 480.10178369989836 -165421.80321415912 -197423.54187387068 -232265.81730517666 42.67415059531241 -3.6330309714530613 -93.32375269226814
265
+ slew "2024-09-11 10:21:46.740" 29.45545571541711 "" "" "" "" "" ""
266
+ observe "2024-09-11 10:22:16.196" 480.10178369989836 -172498.77440669455 -191480.85984672472 -232125.84677684563 40.14748822188107 -4.807868899953369 -92.3285349092325
267
+ slew "2024-09-11 10:30:16.298" 62.514958762996855 "" "" "" "" "" ""
268
+ observe "2024-09-11 10:31:18.812" 480.10178369989836 -179800.05799089733 -184873.35346937075 -231976.16374835753 36.06486308465719 -8.367291815535209 -88.80146209755162
269
+ slew "2024-09-11 10:39:18.914" 118.49253868734212 "" "" "" "" "" ""
270
+ observe "2024-09-11 10:41:17.407" 584.4248781640644 -187560.6110325878 -177260.96912080384 -231810.2843188279 32.275138467974266 -16.192368840244534 -79.9667303901701
271
+ slew "2024-09-11 10:51:01.832" 603.0793425471583 "" "" "" "" "" ""
272
+ observe "2024-09-11 11:01:04.911" 584.4248781640642 -201989.1260681718 -161206.41259913 -231478.8687281992 55.108458927935075 31.568012457992708 -107.18890405248577
273
+ slew "2024-09-11 11:10:49.336" 357.3931772092162 "" "" "" "" "" ""
274
+ observe "2024-09-11 11:16:46.729" 472.90533459427553 -212461.19890320863 -147631.94300499465 -231213.81106100764 41.018847175264305 1.5103980713443672 -97.2634893025635
275
+ slew "2024-09-11 11:24:39.634" 66.25913851774375 "" "" "" "" "" ""
276
+ observe "2024-09-11 11:25:45.894" 480.10178369989836 -218048.60686949012 -139550.34745475207 -231061.19446673398 45.22004203604114 -2.4615782194355678 -94.1626940100043
277
+ slew "2024-09-11 11:33:45.995" 322.260828275798 "" "" "" "" "" ""
278
+ observe "2024-09-11 11:39:08.256" 584.4248781640642 -225791.87219525073 -127134.6319405673 -230832.89390543094 54.60246395505786 25.46629738784264 -105.51947480416885
279
+ slew "2024-09-11 11:48:52.681" 32.73550328270291 "" "" "" "" "" ""
280
+ observe "2024-09-11 11:49:25.417" 584.4248781640642 -231268.03893330385 -117289.61681845042 -230656.32831837967 51.83523339796859 27.30975696112139 -107.67132407617947
281
+ slew "2024-09-11 11:59:09.841" 247.71442882431205 "" "" "" "" "" ""
282
+ observe "2024-09-11 12:03:17.556" 486.15343489419996 -237970.01036285903 -103644.14036017108 -230416.93650637212 48.53578391310462 4.969554252994564 -98.43188480160677
283
+ slew "2024-09-11 12:11:23.709" 183.18638111039553 "" "" "" "" "" ""
284
+ observe "2024-09-11 12:14:26.896" 584.4248781640642 -242777.46757222607 -92387.44361450522 -230223.2787434199 51.64538325729731 21.281561643174676 -105.39791356876485
285
+ slew "2024-09-11 12:24:11.321" 147.96746133919262 "" "" "" "" "" ""
286
+ observe "2024-09-11 12:26:39.288" 500.3861697233204 -247427.03851825467 -79814.92602056995 -230010.25541734122 48.81647558422206 8.092511281525729 -100.10057639301098
287
+ slew "2024-09-11 12:34:59.674" 116.01157390298442 "" "" "" "" "" ""
288
+ observe "2024-09-11 12:36:55.686" 584.4248781640642 -250835.8974798201 -69050.29763071396 -229830.06195257878 51.62174186833757 18.294798876262448 -104.14466131012549
289
+ slew "2024-09-11 12:46:40.111" 33.899204069828706 "" "" "" "" "" ""
290
+ observe "2024-09-11 12:47:14.010" 584.4248781640642 -253784.5822845789 -58105.16027978112 -229648.472187318 48.876977543850515 20.078165522081523 -106.1676119291135
291
+ slew "2024-09-11 12:56:58.435" 53.00845629923341 "" "" "" "" "" ""
292
+ observe "2024-09-11 12:57:51.443" 573.6032256335202 -256324.04019479596 -46689.55396548914 -229460.39774662344 54.33817517522616 19.423766314844226 -103.46784729333226
293
+ slew "2024-09-11 13:07:25.046" 32.60216657347382 "" "" "" "" "" ""
294
+ observe "2024-09-11 13:07:57.649" 573.6032256335202 -258262.44898036474 -35729.3505070913 -229280.7160309622 54.44233812607509 22.436561766854325 -104.53487683491885
295
+ slew "2024-09-11 13:17:31.252" 410.66828173330873 "" "" "" "" "" ""
296
+ observe "2024-09-11 13:24:21.920" 449.99688484865203 -260409.22742471422 -17770.07785499165 -228987.27113126658 37.982584951862634 -10.344971596335911 -87.38687653378425
297
+ slew "2024-09-11 13:31:51.917" 296.8656827617717 "" "" "" "" "" ""
298
+ observe "2024-09-11 13:36:48.783" 500.3861697233204 -261204.86286123542 -4053.031121648293 -228763.20131050795 46.39949736674414 13.004514273409587 -103.54252266121439
299
+ slew "2024-09-11 13:45:09.169" 51.7810467684232 "" "" "" "" "" ""
300
+ observe "2024-09-11 13:46:00.950" 584.4248781640644 -261328.24956107332 6113.036185822979 -228596.764686919 48.92685865246261 17.121306948855437 -104.7286865686888
301
+ slew "2024-09-11 13:55:45.375" 34.134265765271785 "" "" "" "" "" ""
302
+ observe "2024-09-11 13:56:19.509" 584.4248781640642 -260996.11486435554 17505.345969958333 -228409.53097992807 51.64298625363395 15.328438847395628 -102.83026592491849
303
+ slew "2024-09-11 14:06:03.934" 33.7027681604306 "" "" "" "" "" ""
304
+ observe "2024-09-11 14:06:37.637" 584.4248781640644 -260167.59393261955 28872.899304292045 -228221.600094609 51.581331268991164 12.306531453813928 -101.47052585658298
Binary file