/v1/resolution
Resolving power and limiting magnitude
Δοκιμάστε το ζωντανά
10 δωρεάν κλήσεις την ημέρα — χωρίς εγγραφή, χωρίς κλειδί API. Μέσω του gateway του oanor.
Δουλεύει. Πάρε ένα κλειδί API και χρησιμοποίησέ το στο έργο σου.
Λάβετε ένα κλειδί APIΑποσπάσματα κώδικα
curl "https://api.oanor.com/telescope-api/v1/resolution" \ -H "x-oanor-key: oanor_test_..."
await fetch("https://api.oanor.com/telescope-api/v1/resolution", {
headers: { "x-oanor-key": "oanor_test_..." }
});
$ch = curl_init("https://api.oanor.com/telescope-api/v1/resolution");
curl_setopt($ch, CURLOPT_HTTPHEADER, ["x-oanor-key: oanor_test_..."]);
curl_setopt($ch, CURLOPT_RETURNTRANSFER, true);
$out = curl_exec($ch);
import requests
requests.get(
"https://api.oanor.com/telescope-api/v1/resolution",
headers={"x-oanor-key": "oanor_test_..."}
)
Παράδειγμα απόκρισης
Πραγματική απόκριση αυτού του endpoint, από τον τελευταίο έλεγχο υγείας.
{
"data": {
"note": "Resolving power is set by the aperture alone: the Dawes limit ≈ 116 ÷ aperture(mm) arcseconds is the classic split-a-double-star figure, the Rayleigh limit ≈ 138 ÷ aperture a slightly stricter criterion. Bigger glass resolves finer detail and, gathering more light, also reaches fainter stars — the limiting magnitude ≈ 2.7 + 5·log₁₀(aperture mm). Atmospheric seeing usually caps real resolution around 1 arcsecond regardless of aperture.",
"inputs": {
"aperture_mm": 200
},
"dawes_limit_arcsec": 0.58,
"limiting_magnitude": 14.2,
"rayleigh_limit_arcsec": 0.69
},
"meta": {
"timestamp": "2026-06-07T08:18:03.856Z",
"request_id": "22451984-dc3a-4a03-b49d-6d37fa0722b1"
},
"status": "ok",
"message": "Resolution",
"success": true
}