Michal Wilinski wrote:Hi,
Thanks, it's finally working!
I have another question (sorry for offtopic). What will the judges consider when rating our project? Only code is important or what we will do with data after program results return from the ISS ? Example: we're planning to make climate chart but it is only possible when we get the results from the station. Is the chart considered in rating process? Sorry for English, but I'm not native speaker.
So the judging criteria is listed on this page:
https://astro-pi.org/proxima/
- Scientific value
- Creativity and originality
- Feasibility of the missions within the ISS environment
- Code readability and quality
- Overall rigour, clarity, and comprehensiveness
So yes what you want to do with the data will be considered under Scientific value. So perhaps give a mock up example of what you expect to get?
mattmiller wrote:OT
I'm intrigued as to this snippet - whats the philosophy behind it?
Is there some chance that the thread module doesn't exist?
Code: Select all
try:
import thread
except ImportError:
import _thread as thread
This just makes it safe for running in either python2 or python3.
In python2 the module is called
thread, but in python3 it's called
_thread.