Skip to content

Commit

Permalink
Merge pull request #6 from observatorycontrolsystem/5-major-planet-qu…
Browse files Browse the repository at this point in the history
…eries-do-not-return-target-name

add a name to the planet return dictionary
  • Loading branch information
jchate6 authored Jan 23, 2025
2 parents b2c5811 + 203a567 commit 8c7eff9
Show file tree
Hide file tree
Showing 4 changed files with 17 additions and 10 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/build.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ jobs:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: ["3.8", "3.9", "3.10"]
python-version: ["3.9", "3.10"]
steps:
- name: Check out repository
uses: actions/checkout@v2
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/canary_tests.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ jobs:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: ["3.8", "3.9", "3.10"]
python-version: ["3.9", "3.10"]
steps:
- name: Check out repository
uses: actions/checkout@v2
Expand Down
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ classifiers=[
"Intended Audience :: Science/Research",
"Operating System :: OS Independent",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.9",
"Topic :: Scientific/Engineering :: Astronomy",
"Topic :: Scientific/Engineering :: Physics"
]
Expand Down
21 changes: 14 additions & 7 deletions simbad2k/planets.json
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,8 @@
"argument_of_perihelion": 29.19120826459077,
"ascending_node": 48.30099247760661,
"mean_daily_motion": 4.092346380325095,
"epoch_jd": 2460181.5
"epoch_jd": 2460181.5,
"name": "Mercury"
},
"venus": {
"semimajor_axis": 0.7233394993783024,
Expand All @@ -17,7 +18,8 @@
"argument_of_perihelion": 54.98273517821931,
"ascending_node": 76.61383887174399,
"mean_daily_motion": 1.602106319741148,
"epoch_jd": 2460181.5
"epoch_jd": 2460181.5,
"name": "Venus"
},
"mars": {
"semimajor_axis": 1.523697529195890,
Expand All @@ -27,7 +29,8 @@
"argument_of_perihelion": 286.6396041587725,
"ascending_node": 49.48984370080841,
"mean_daily_motion": 0.5240298172661463,
"epoch_jd": 2460181.5
"epoch_jd": 2460181.5,
"name": "Mars"
},
"jupiter": {
"semimajor_axis": 5.203501815132350,
Expand All @@ -37,7 +40,8 @@
"argument_of_perihelion": 273.6755601807570,
"ascending_node": 100.5313644889547,
"mean_daily_motion": 0.08307449251445106,
"epoch_jd": 2460181.5
"epoch_jd": 2460181.5,
"name": "Jupiter"
},
"saturn": {
"semimajor_axis": 9.571070445959165,
Expand All @@ -47,7 +51,8 @@
"argument_of_perihelion": 335.6768377854934,
"ascending_node": 113.5533514314662,
"mean_daily_motion": 0.03329088647694878,
"epoch_jd": 2460181.5
"epoch_jd": 2460181.5,
"name": "Saturn"
},
"uranus": {
"semimajor_axis": 19.29708529727467,
Expand All @@ -57,7 +62,8 @@
"argument_of_perihelion": 91.37491162290534,
"ascending_node": 74.03695443119472,
"mean_daily_motion": 0.01162722238867712,
"epoch_jd": 2460181.5
"epoch_jd": 2460181.5,
"name": "Uranus"
},
"neptune": {
"semimajor_axis": 30.28612737025333,
Expand All @@ -67,6 +73,7 @@
"argument_of_perihelion": 256.1860270984464,
"ascending_node": 131.6333867463142,
"mean_daily_motion": 0.005913568620118722,
"epoch_jd": 2460181.5
"epoch_jd": 2460181.5,
"name": "Neptune"
}
}

0 comments on commit 8c7eff9

Please sign in to comment.