You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 

56 lines
1.5 KiB

  1. /*
  2. * aptdec - A lightweight FOSS (NOAA) APT decoder
  3. * Copyright (C) 2019-2022 Xerbo (xerbo@protonmail.com)
  4. *
  5. * This program is free software; you can redistribute it and/or modify
  6. * it under the terms of the GNU General Public License as published by
  7. * the Free Software Foundation; either version 2 of the License, or
  8. * (at your option) any later version.
  9. *
  10. * This program is distributed in the hope that it will be useful,
  11. * but WITHOUT ANY WARRANTY; without even the implied warranty of
  12. * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  13. * GNU General Public License for more details.
  14. *
  15. * You should have received a copy of the GNU General Public License
  16. * along with this program. If not, see <https://www.gnu.org/licenses/>.
  17. */
  18. #ifndef APTDEC_CALIBRATION_H
  19. #define APTDEC_CALIBRATION_H
  20. #include "algebra.h"
  21. typedef struct {
  22. char *name;
  23. // Quadratics for calculating PRT temperature
  24. quadratic_t prt[4];
  25. // Visible calibration coefficients
  26. struct {
  27. linear_t low;
  28. linear_t high;
  29. float cutoff;
  30. } visible[2];
  31. // Radiance coefficients
  32. struct {
  33. float vc, A, B;
  34. } rad[3];
  35. // Non linear correction coefficients
  36. struct {
  37. float Ns;
  38. quadratic_t quadratic;
  39. } cor[3];
  40. } calibration_t;
  41. // First radiation constant (mW/(m2-sr-cm-4))
  42. static const float C1 = 1.1910427e-5f;
  43. // Second radiation constant (cm-K)
  44. static const float C2 = 1.4387752f;
  45. calibration_t get_calibration(int satid);
  46. #endif