No puede seleccionar más de 25 temas Los temas deben comenzar con una letra o número, pueden incluir guiones ('-') y pueden tener hasta 35 caracteres de largo.

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364
  1. ATPDEC README (Thierry Leconte 2003)
  2. DESCRIPTION
  3. Atpdec is a open source program that decode images transmitted by POES
  4. NOAA weather satellite serie.
  5. These satellites transmit continuously, among other things, medium resolution images
  6. of the earth on 137Mhz.
  7. These transmitions could be easely received with
  8. an inexpensive antenna 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 4 images could be generated :
  13. 1) Raw image : contains the 2 transmitted channel images + telemetry and synchro pulses.
  14. Raw image is not calibrated, so it could be too dark or too light depending of
  15. the recording level.
  16. 2) Calibrated channel A image
  17. 3) Calibrated channel B image
  18. 4) False color image
  19. Input soundfiles must be mono signal sampled at 11025 Hz.
  20. Atpdec use libsnd to read soundfile, so any sound file format supported by libsnd
  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 Suse 8.2, but must work on any Unix platform.
  25. Just adapt the Makefile and type make (sorry no configure).
  26. atpdec use libsnd, 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] soundfile
  31. -c file.png
  32. Use a given colormap for false color generation. Default : Internal colormap.
  33. -i [r|a|b|c]
  34. Toggle raw (r) , channel A (a) , channel B (b) or false color (c) output.
  35. Default : "abc"
  36. -d directory
  37. Optional images destination directory. Default : sounfile directory.
  38. -s Output 8bits grayscale images for chanel A|B and raw images. Default :16bits
  39. Generated image are in png format, 16 or 8bits greyscale for raw and channel A|B images,
  40. 24bits RVB for false color.
  41. Image names are soundfilename-x.png, where x is :
  42. -r for raw images
  43. -satellite instrument number (1,2,3A,3B,4,5) for channel A|B images
  44. -c for false colors.
  45. EXAMPLE
  46. atpdec -d test -i ac 09121333.wav
  47. Will process the 09121333.wav file and generate channel A test/09121333-2.png and false color test/09121333-c.png image files.