Sébastien Celles
Sébastien Celles
my guess was that some IGC loggers accept changing task during flight but in such a case declaration of a second task could only occur after some B records (covered...
Well! so this part of IGC spec is quite unclear because "The lines for Takeoff and Landing are for information and are not part of the official IGC Declaration". I...
An other part of spec seems to prove what your are saying... p4 of pdf (page named iii) ``` Appendix A – The IGC Data File Standard A3 Single Instance...
``` except Exception, e: raise ValueError('Invalid Hex Input: %s' % (color_value)) ``` should be changed to ``` except Exception as e: raise ValueError('Invalid Hex Input: %s' % (color_value)) ``` but...
Pinging @aerickson
``` @rgb256.setter def rgb256(self, color_tuple): self.rgb = map(lambda x: x / 255.0, color_tuple) ``` should be ``` @rgb256.setter def rgb256(self, color_tuple): self.rgb = tuple(map(lambda x: x / 255.0, color_tuple)) ```
Partially closes #16 (it just builds examples) there is no unit tests
Ensure that code can be compiled successfully (which is currently the case) could be a first step. So when a PR is send it will ensure it compiles but you...
Here is a first example of a `.travis.yml` file ``` language: python python: - "2.7" # Cache PlatformIO packages using Travis CI container-based infrastructure sudo: false cache: directories: - "~/.platformio"...
Hi @ronisbr and @bkamins what @bkamins is showing looks good to me. but an other representation could be simply ``` Transposed 2×4 DataFrame Col | 1 2 ───────────┼────────────────────── x Float64...