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.

README 2.3 KiB

20 years ago
20 years ago
20 years ago
20 years ago
20 years ago
12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879
  1. ATPDEC README (Thierry Leconte F4DWV (c) 2004-2005)
  2. DESCRIPTION
  3. Atpdec is an open source program that decodes images transmitted by POES
  4. NOAA weather satellite series.
  5. These satellites transmit continuously, among other things, medium
  6. resolution images of the earth on 137Mhz.
  7. These transmissions could be easily received with an inexpensive antenna
  8. and dedicated receiver.
  9. Output from such a receiver, is an audio signal that could be recorded
  10. into a soundfile with any soundcard.
  11. Atpdec will convert these sounfiles into .png images.
  12. For each soundfile up to 6 images could be generated :
  13. 1. Raw image : contains the 2 transmitted channel images + telemetry
  14. and synchro pulses.
  15. 2. Calibrated channel A image
  16. 3. Calibrated channel B image
  17. 4. Temperature compensed I.R image
  18. 5. False color image
  19. Input soundfiles must be mono signal sampled at 11025 Hz.
  20. Atpdec use libsndfile to read soundfile, so any sound file format supported by libsndfile
  21. could be read.(Only tested with .wav file).
  22. COMPILATION
  23. Atpdec is written in plain standart C and must be very portable.
  24. It was only tested on Linux Fedora , but must work on any Unix platform.
  25. Just adapt the Makefile and type make (sorry no configure).
  26. atpdec use libsndfile, libpng and libm.
  27. snd.h and png.h header must be present on your system.
  28. If they are not on standard path, edit the include path in the Makefile.
  29. USAGE
  30. atpdec [options] soundfiles ...
  31. OPTIONS
  32. -i [r|a|b|c|t]
  33. Toggle raw (r) , channel A (a) , channel B (b) , false color (c) ,
  34. or temperature (t) output.
  35. Default : "ac"
  36. -d directory
  37. Optional images destination directory.
  38. Default : soundfile directory.
  39. -s n
  40. Satellite number 15 to 18
  41. Used for Temperature compensation.
  42. Default : NOAA15
  43. -c conf_file
  44. Use configuration file for false color generation.
  45. Default : Internal parameters.
  46. OUTPUT
  47. Generated image are in png format, 8bits greyscale for raw and channel A|B images,
  48. 24bits RVB for false color.
  49. Image names are soundfilename-x.png, where x is :
  50. -r for raw images
  51. -satellite instrument number (1,2,3A,3B,4,5) for channel A|B images
  52. -c for false colors.
  53. EXAMPLE
  54. atpdec -d image -i ac *.wav
  55. Will process all .wav files in the current directory, generate only channel A and false color images and put them in the image directory.