[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[Orekit Developers] Satellite Tracker demo application
- To: orekit-developers@orekit.org
- Subject: [Orekit Developers] Satellite Tracker demo application
- From: Thomas Neidhart <thomas.neidhart@gmail.com>
- Date: Mon, 26 Mar 2012 20:51:04 +0200
- Dkim-signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=20120113; h=message-id:date:from:user-agent:mime-version:to:subject :x-enigmail-version:content-type:content-transfer-encoding; bh=wiCRMgn65K81gNhyc0E57T8EwFJQai4QWAKtEW+xnOk=; b=aGNAPedFKxyaP+csTJVcJ9g+OcBjageD5sxkZsj+3fAruLeOLX4yA7kapFzf8UXAUs OrEMmiXo9yTxPwIKvLPK5AeQdlWcTnRywxQefy2z/dN8a+BPK5Mn2m/KuV0yLR9YFFqZ pLCX9VIHL8r7Uf1Ei7R5iVKo/PZnXgup516SsXuyo0i/+7axzDWN6Y4fGWLm2gvNA6gw YJAPkAiO6xZoeClFIS9DCXvASpF/bUqvU1wjPxRlLpGIOwBHPJZFgnN8OshwIBCRcaES MQS7/QjAbF5G8C1ht/aITipXq20nNxH+2qlB24/usLBPQvO8VVq1qxWWZnihlmy+yJMm ux/w==
- User-agent: Mozilla/5.0 (X11; Linux i686; rv:10.0.2) Gecko/20120216 Thunderbird/10.0.2
Hi,
I have created a small webapp prototype of a satellite tracker that uses
orekit to propagate the satellite orbits.
It's basically a tutorial how to use Vaadin together with Spring and
JPA, and I wanted to something more interesting than just a simple CRUD
application.
The result maybe also of interest to this community and can be found
here (Apache license): https://github.com/netomi/sat-tracker
To use it just type in the following:
git clone git://github.com/netomi/sat-tracker.git
mvn clean compile
mvn jetty:run
After that, the application can be accessed at
http://localhost:8080/sat-tracker
There are already quite a bunch of similar applications available, but
none of them uses orekit ;-).
Any comments or feedback or ideas for more features is welcome.
btw. the orekit version I have used has some (local) changes:
- make use of frames thread-safe
- add support for ephemeris mode to TLEPropagator
Thomas