All Projects → GliderGeek → Pysoar

GliderGeek / Pysoar

Licence: gpl-3.0
Gliding competition analysis

Programming Languages

python
139335 projects - #7 most used programming language

Labels

Projects that are alternatives of or similar to Pysoar

Security List
Penetrum LLC opensource security tool list.
Stars: ✭ 619 (+7637.5%)
Mutual labels:  analysis
Manalyze
A static analyzer for PE executables.
Stars: ✭ 701 (+8662.5%)
Mutual labels:  analysis
Compressonator
Tool suite for Texture and 3D Model Compression, Optimization and Analysis using CPUs, GPUs and APUs
Stars: ✭ 785 (+9712.5%)
Mutual labels:  analysis
Appletrace
🍎Objective C Method Tracing Call Chart
Stars: ✭ 641 (+7912.5%)
Mutual labels:  analysis
Aosp
这是一个连载的博文系列,我将持续为大家提供尽可能透彻的Android源码分析
Stars: ✭ 693 (+8562.5%)
Mutual labels:  analysis
Multiqc
Aggregate results from bioinformatics analyses across many samples into a single report.
Stars: ✭ 708 (+8750%)
Mutual labels:  analysis
Keen Js
https://keen.io/ JavaScript SDKs. Track users and visualise the results. Demo http://keen.github.io/keen-dataviz.js/
Stars: ✭ 588 (+7250%)
Mutual labels:  analysis
Revelt
Analysis of a project using React and Svelte technologies
Stars: ✭ 20 (+150%)
Mutual labels:  analysis
Stockpriceprediction
Stock Price Prediction using Machine Learning Techniques
Stars: ✭ 700 (+8650%)
Mutual labels:  analysis
Sonar Java
☕️ SonarSource Static Analyzer for Java Code Quality and Security
Stars: ✭ 745 (+9212.5%)
Mutual labels:  analysis
Sharppcap
Official repository - Fully managed, cross platform (Windows, Mac, Linux) .NET library for capturing packets
Stars: ✭ 665 (+8212.5%)
Mutual labels:  analysis
Cortex
Cortex: a Powerful Observable Analysis and Active Response Engine
Stars: ✭ 676 (+8350%)
Mutual labels:  analysis
Pcp
Performance Co-Pilot
Stars: ✭ 716 (+8850%)
Mutual labels:  analysis
Grassmarlin
Provides situational awareness of Industrial Control Systems (ICS) and Supervisory Control and Data Acquisition (SCADA) networks in support of network security assessments. #nsacyber
Stars: ✭ 621 (+7662.5%)
Mutual labels:  analysis
Radar
实时风控引擎(Risk Engine),自定义规则引擎(Rule Script),完美支持中文,适用于反欺诈(Anti-fraud)应用场景,开箱即用!!!移动互联网时代的风险管理利器,你 Get 到了吗?
Stars: ✭ 781 (+9662.5%)
Mutual labels:  analysis
Seccubus
Easy automated vulnerability scanning, reporting and analysis
Stars: ✭ 615 (+7587.5%)
Mutual labels:  analysis
Yedda
YEDDA: A Lightweight Collaborative Text Span Annotation Tool. Code for ACL 2018 Best Demo Paper Nomination.
Stars: ✭ 704 (+8700%)
Mutual labels:  analysis
Pyintelowl
Robust Python SDK and Command Line Client for interacting with IntelOwl's API.
Stars: ✭ 26 (+225%)
Mutual labels:  analysis
Articleparse
Heuristic text extraction from news sites in Python3
Stars: ✭ 6 (-25%)
Mutual labels:  analysis
Explorer
Data Explorer by Keen - point-and-click interface for analyzing and visualizing event data.
Stars: ✭ 725 (+8962.5%)
Mutual labels:  analysis

PySoar

Build Status

PySoar automates the analysis of glider competitions. It starts with a Soaring Spot URL and delivers a spreadsheet as output.

A screenshot of the program:

PySoar screenshot

An example analysis is provided for this competition day:

Example pysoar analysis

Stand alone versions

Stand alone versions for Windows, Mac and Linux are available under releases.

Apart from Excel/Open Office for viewing the spreadsheet, no extra software is needed.

Limitations

The following limitations are (currently) in place:

  • no restart after 1st turnpoint
  • no penalties for missing turnpoints -> outlanding
  • no multiple start points

Development

For development, the following steps need to be taken:

  1. Install python requirements
pip install -r requirements.txt

Building an executable

This chapter explains how to create a pysoar executable

Note: it is important to use the system python3.6

  • running inside virtualenv causes wxpython issues
  • running python3.7 causes PyInstaller issues

Mac OS

  • inside PySoar folder: pip3.6 install -r requirements.txt
  • PYGEODESY_PATH=$(python3.6 -c "import pygeodesy; print(pygeodesy.__path__[0])")
  • pyinstaller --windowed --paths=$PYGEODESY_PATH main_pysoar.py

Windows

  • inside PySoar folder: pip install -r requirements.txt
  • python3.6 -c "import pygeodesy; print(pygeodesy.__path__[0])"
  • pyinstaller --windowed --onefile --paths=[INSERT_RESULT_PREVIOUS_LINE_HERE] main_pysoar.py

License

PySoar - Automating gliding competition analysis	Copyright (C) 2016  Matthijs Beekman

This program is free software: you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
the Free Software Foundation, either version 3 of the License, or
(at your option) any later version.

This program is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
GNU General Public License for more details.

You should have received a copy of the GNU General Public License
along with this program.  If not, see <http://www.gnu.org/licenses/>

You can find the full license text in the LICENSE file.

Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].