{% extends "cosmic_base.html" %} {% block title %}Custom Plotting{% endblock %} {% block head_additions %} {# The flask_googlemaps package does not work if installed via "sudo pip ...", I should figure out how to fix this #} {# {{"decoupled-map"|googlemap_js(location_vars['Latitude'], location_vars['Longitude'], markers=[( location_vars['Latitude'], location_vars['Longitude'] )])}} #} {% endblock %} {% block content %}

Custom functionality

Location
{# {{"decoupled-map"|googlemap_html(location_vars['Latitude'], location_vars['Longitude']) }} #}

Custom plotting
The application uses Unix timestamps to save the time of events. Thus for creating a custom plot the application will want to know the start and end time of the plot as Unix timestamps.
To convert UTC time to a useful Unix timestamp, we recommend this website.

Start time of the plot in UTC UnixSeconds (negative seconds will mean "seconds before last measurement"):

End time of the plot in UTC UnixSeconds(the plot will not extend further than the available data):

Bin size for the histogram in seconds (note that too many bins will slow down the histogram creation):


{% endblock %}