reynico / raspberry-noaa

Fully automated ISS SSTV, NOAA and Meteor satellite image downloader using Raspberry PI
https://github.com/reynico/raspberry-noaa
GNU General Public License v3.0
180 stars 56 forks source link

Thinking about te software. #81

Closed tomamdy closed 3 years ago

tomamdy commented 3 years ago

Nico: Thinking about te software. Meteor works nice too.But where is the rectified image or is the image already rectfied? How (whichcommands)could I change the RGB or color of te Meteor picture? Where could I find the description of this commands?

But how many thumbnail are max. displayed in the webpannel? What happened if the sd-card is full of pictures?

reynico commented 3 years ago

Hi Tom!

Meteor works nice too.But where is the rectified image or is the image already rectfied?

The image is rectified during the reception, then the original image is deleted. Comment or remove this line so you keep both files: https://github.com/reynico/raspberry-noaa/blob/master/receive_meteor.sh#L82

How (whichcommands)could I change the RGB or color of te Meteor picture?

For night passes, line 71: https://github.com/reynico/raspberry-noaa/blob/master/receive_meteor.sh#L71. For daylight passes, line 75: https://github.com/reynico/raspberry-noaa/blob/master/receive_meteor.sh#L75

Where could I find the description of this commands?

There is not much documentation yet, I'll try to write a bit this weekend.

But how many thumbnail are max. displayed in the webpannel?

12 thumbnails per page, you can edit this value in /var/www/wx/Config.php, img_per_page setting.

What happened if the sd-card is full of pictures?

Most likely, reception may stop working.

tomamdy commented 3 years ago

_Most likely, reception may stop working._ But should it be possible to delete bij s.w. pictures and bring passe back to first ? Recaption may stop workimg is not so nice solution.

Tom

reynico commented 3 years ago

You mean an auto-prune process? Sure, it's easy to implement. I personally prefer keeping all my images and stop receiving new ones if the SD card is full instead of delete old ones to make more space. Using a 16GB SD card allows more than 8000 pictures!

tomamdy commented 3 years ago

Oh Yes, I like a prune script. That learns me more.

Tom

reynico commented 3 years ago

Prune script updated, https://github.com/reynico/raspberry-noaa/blob/master/prune.sh and instructions here: https://github.com/reynico/raspberry-noaa/blob/master/WORKING.md#pruning

cd /home/pi/raspberry-noaa/
git fetch -pt
git checkout origin/master -- prune.sh
tomamdy commented 3 years ago

Thank's Nico. It seems to work well.