1
0
Fork 0
Commit Graph

53 Commits (ecb38787e035cb827fe772f0f300949db4bc30b8)

Author SHA1 Message Date
Pierros Papadeas 1f1b348103
Load satellite predictions asynchronously
A new url/view and JS function was created to async fetch
satellite predictions per ground station.
2017-12-24 01:27:06 +01:00
Pierros Papadeas 9a9ce0a630
Add notifications for unvetted observations in user dropdown 2017-12-17 01:15:27 +02:00
Pierros Papadeas 50477f8086 Revert "Merge branch 'dropdown-user' into 'dev'"
This reverts merge request !442
2017-12-14 21:34:00 +00:00
Pierros Papadeas 74039b5b2d
Add notifications for unvetted observations in user dropdown 2017-12-14 21:32:14 +02:00
Pierros Papadeas 8bea909184 Enhance stations table css 2017-12-14 19:27:36 +00:00
Pierros Papadeas 61d49568bf
Add future counter for observations in stations page 2017-12-12 17:28:41 +02:00
Pierros Papadeas 3d0790768b
Add transmitter description on observation view and fix missing image on station 2017-10-30 11:24:51 +02:00
Pierros Papadeas d6ddc428a8
Add stats, remove last passes and move map in station page 2017-10-29 12:53:52 +02:00
Alfredos-Panagiotis Damkalis ec137899c9 Fix scroll in observation view 2017-10-27 21:14:53 +03:00
Pierros Papadeas e8076229be Consolidate single observation page 2017-10-19 22:28:03 +03:00
Pierros Papadeas cceeeb697e Add future tag and beautify observations filtering 2017-10-17 19:55:20 +03:00
Pierros Papadeas 6b77df6252 Add stats and beautify stations page 2017-10-14 11:13:45 +01:00
Pierros Papadeas a97cbd4167 Fix filtering UI on observations page 2017-10-12 00:06:57 +03:00
Nikos Roussos c16379e2c6
UI fixes for new map
* Fix call2action mobile behavior
* Make call2action a bit transparent
* Disable map panning on touch interfaces
* Hide Mapbox logo (attribution is enough)
2017-10-11 18:17:38 +03:00
Pierros Papadeas c2b63c8222 Fix polar plot after mapbox-gl transition 2017-10-11 16:43:43 +03:00
Nikos Roussos 02289dffa6
Fix API observations filter
* Fix home page test
2017-10-10 00:39:17 +03:00
Pierros Papadeas 3bad065709 Move to mapbox-gl and beautify home page 2017-10-09 23:07:07 +03:00
Nikos Roussos a06d6ec13a
Refactor models to remove Data table
* Add on_delete option to all ForeignKey fields
* Adjust all views
* Adjust initialize command
* Refactor tests
* Refactor API to make these changes transparent
* Adjust all templates
* UI refreshment on Observation tepmplate
* Add STRICT_TRANS_TABLES for mariadb
* Minor text changes to tle command
* Update requirements
2017-09-12 18:15:47 +03:00
Corey Shields 463e727bf2 Add station description
Adds a 500 character limited station description field, displayed above the mapbox in station view.

Also fixes one errant quote in station_edit.html
2017-08-12 21:39:06 -04:00
Pierros Papadeas c230e03c18
Add success rate info per satellite 2017-06-07 09:46:28 +03:00
Alfredos-Panagiotis Damkalis 3b18470125 Fix of spectrogram plotting 2017-05-21 18:01:41 +03:00
Pierros Papadeas 93734adf51
Start and end marks on polar plot. 2017-03-21 15:55:41 +02:00
Pierros Papadeas b60cf85623 Add space between time and date for visual clarification 2017-03-19 13:15:54 +02:00
Pierros Papadeas 5a52ee0f1f Fix color of label-warning for colorblindness ease. 2017-02-11 19:44:13 +02:00
Pierros Papadeas c6ca6ac1ee Rearrange data view in observation view with tabs. 2017-02-10 20:47:08 +02:00
Nikos Roussos 90e5b75575
Add stylelint 2017-02-10 18:48:24 +02:00
Nikos Roussos 9aa7585fcf
UI for adding waterfall to observations 2017-01-26 20:07:13 +02:00
Nikos Roussos aaef6bbb4e [Re #186] Add some basic validation to Station form 2016-04-23 18:05:57 +03:00
Nikos Roussos 5756d7b935 [Re #139] Satellite modal 2016-04-08 13:15:59 +03:00
Nikos Roussos 8cb165888f Filter observations by satellite 2016-04-08 01:05:50 +03:00
Nikos Roussos b6ffa18848 Simplify Observations filter UI 2016-04-05 20:41:54 +03:00
Nikos Roussos 0fa8d8fd57 [Re: #157] Use UTC on observations
* Fix observation_new indentation
* Move inline javascript to proper file
2016-03-30 12:26:28 +03:00
Nikos Roussos 1b33cd8452 Rearrange Data player 2016-03-27 00:00:55 +02:00
Nikos Roussos 6bee63ae2f UI changes on Data panels 2016-03-26 16:54:10 +02:00
Corey Shields 06ff9469c2 Initial data vetting/verification system
Model change (with migration 0006) adds 3 fields to Data:
vetted_status (charfield with options for data status, default "unknown")
vetted_user (who vetted the data)
vetted_datetime (when it was vetted)

In addition, various boolean functions are added for the Data model
to check statuses. More functions are added to the Observation model
to check status of verification within an observation as well, assuming
multiple data entries in an Observation. With these, I also changed
"has_data" to "has_submitted_data" to be more specific alongside the
others.

For UX, we add a green check sign or red removal sign to the data
header in Observation view (along with green/red datetime in the footer)
if a data is verified good or bad, respectively. If there is an unknown
status, the data header is given a thumbs-up and thumbs-down button to
verify the data good or bad. These icons are only offered to is_staff,
the observation requestor, and any station owner in the observation.
These buttons trigger new URLs/functions in view:
data_verify(id)
data_mark_bad(id)
Returning the user back to the originating Observation page.

In the observation lists I changed the coloring of the ID button to be:
Future: light blue (same)
No uploaded data and/or all vetted bad data: red
Some or all unvetted data with no verified good data: orange
Some or all verified good data: green

These changes are reflected in the observations.html, home.html, and
user_detail.html templates.

solves satnogs/satnogs-network#171
2016-03-26 16:54:09 +02:00
Corey Shields b396d54d58 Adding convenience links to observation view
I find myself often bouncing from an observation to the station
that made the recording, so added a link to the station in the
station name above the data payload view. In addition, made a
link to db.satnogs.org for the satellite, opening a new window
as this links out to a new site.
2016-03-24 15:58:11 -04:00
Rob Berwick 83993269ba Display current playback time for observation data 2016-02-21 14:20:44 +00:00
Nikos Roussos 45bde8c24e Use same style for tle notice as the timezone one
Also:
* Update requirements
* Add requires badge
*
2016-01-27 17:56:48 +02:00
Nikos Roussos 789106265b Show TLEs used on Observations 2016-01-25 21:09:37 +08:00
Nikos Roussos 9d1604d609 Multiple grid/spacing UI fixes on account/avatar templates 2015-08-13 21:21:24 +03:00
Nikos Roussos 9e0e53cbb8 [Fixes #31] Create helper for success rates on stations 2015-08-11 12:19:10 +03:00
Nikos Roussos 5760c6a459 Add site settings for fetching data 2015-07-22 14:16:15 +03:00
Nikos Roussos e8e5bf34a3 Add robots and custom 404/500 pages 2015-07-21 11:42:23 +03:00
Nikos Roussos 589bc556dd Fix timeline false appearances 2015-07-07 20:24:31 +03:00
Nikos Roussos 506ece5b1c Simplify observations spinner 2015-07-07 17:28:08 +03:00
Nikos Roussos 1875ced3aa Add spinner to observation events 2015-07-06 15:12:33 +03:00
Nikos Roussos 2811e86888 Hide mapbox branding 2015-06-25 15:19:36 -07:00
Nikos Roussos f03b16cc97 Fix stage notice placement 2015-05-11 20:05:54 +03:00
Nikos Roussos a973c1062e Add stage notice 2015-05-10 13:31:10 +03:00
Nikos Roussos b26b466e53 Update about and copyright 2015-04-11 20:14:36 +03:00