@apiverve/moonposition 1.1.7 → 1.1.9
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.
- package/README.md +18 -18
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -50,7 +50,7 @@ Using the API client, you can perform requests to the API.
|
|
|
50
50
|
var query = {
|
|
51
51
|
lat: 37.7749,
|
|
52
52
|
lon: -122.4194,
|
|
53
|
-
date: "
|
|
53
|
+
date: "03-27-2025"
|
|
54
54
|
};
|
|
55
55
|
```
|
|
56
56
|
|
|
@@ -69,22 +69,22 @@ api.execute(query, function (error, data) {
|
|
|
69
69
|
###### Example Response
|
|
70
70
|
|
|
71
71
|
```
|
|
72
|
-
{
|
|
73
|
-
"status": "ok",
|
|
74
|
-
"error": null,
|
|
75
|
-
"data": {
|
|
76
|
-
"date": "
|
|
77
|
-
"coordinates": {
|
|
78
|
-
"latitude": 37.7749,
|
|
79
|
-
"longitude": -122.4194
|
|
80
|
-
},
|
|
81
|
-
"moon": {
|
|
82
|
-
"altitude":
|
|
83
|
-
"azimuth": 2.
|
|
84
|
-
"distance":
|
|
85
|
-
}
|
|
86
|
-
},
|
|
87
|
-
"code": 200
|
|
72
|
+
{
|
|
73
|
+
"status": "ok",
|
|
74
|
+
"error": null,
|
|
75
|
+
"data": {
|
|
76
|
+
"date": "02-20-2025",
|
|
77
|
+
"coordinates": {
|
|
78
|
+
"latitude": 37.7749,
|
|
79
|
+
"longitude": -122.4194
|
|
80
|
+
},
|
|
81
|
+
"moon": {
|
|
82
|
+
"altitude": -1.12892975939048,
|
|
83
|
+
"azimuth": 2.0892518435834035,
|
|
84
|
+
"distance": 402883.10247420095
|
|
85
|
+
}
|
|
86
|
+
},
|
|
87
|
+
"code": 200
|
|
88
88
|
}
|
|
89
89
|
```
|
|
90
90
|
|
|
@@ -110,7 +110,7 @@ All usage of the APIVerve website, API, and services is subject to the [APIVerve
|
|
|
110
110
|
## License
|
|
111
111
|
Licensed under the The MIT License (MIT)
|
|
112
112
|
|
|
113
|
-
Copyright (©)
|
|
113
|
+
Copyright (©) 2025 APIVerve, and EvlarSoft LLC
|
|
114
114
|
|
|
115
115
|
Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:
|
|
116
116
|
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@apiverve/moonposition",
|
|
3
|
-
"version": "1.1.
|
|
3
|
+
"version": "1.1.9",
|
|
4
4
|
"description": "Moon Position is a simple tool for getting moon position data. It returns data such as altitude, azimuth, and distance of the moon based on the location provided.",
|
|
5
5
|
"main": "index.js",
|
|
6
6
|
"scripts": {
|