Imported most of the main ubseds site, we'll use this as a base

gh-pages
Richard Meadows 2015-04-14 17:10:41 +01:00
commit f5edbfc665
267 zmienionych plików z 85507 dodań i 0 usunięć

157
404.html 100644
Wyświetl plik

@ -0,0 +1,157 @@
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<title>Page Not Found :(</title>
<style>
::-moz-selection {
background: #b3d4fc;
text-shadow: none;
}
::selection {
background: #b3d4fc;
text-shadow: none;
}
html {
padding: 30px 10px;
font-size: 20px;
line-height: 1.4;
color: #737373;
background: #f0f0f0;
-webkit-text-size-adjust: 100%;
-ms-text-size-adjust: 100%;
}
html,
input {
font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
}
body {
max-width: 500px;
_width: 500px;
padding: 30px 20px 50px;
border: 1px solid #b3b3b3;
border-radius: 4px;
margin: 0 auto;
box-shadow: 0 1px 10px #a7a7a7, inset 0 1px 0 #fff;
background: #fcfcfc;
}
h1 {
margin: 0 10px;
font-size: 50px;
text-align: center;
}
h1 span {
color: #bbb;
}
h3 {
margin: 1.5em 0 0.5em;
}
p {
margin: 1em 0;
}
ul {
padding: 0 0 0 40px;
margin: 1em 0;
}
.container {
max-width: 380px;
_width: 380px;
margin: 0 auto;
}
/* google search */
#goog-fixurl ul {
list-style: none;
padding: 0;
margin: 0;
}
#goog-fixurl form {
margin: 0;
}
#goog-wm-qt,
#goog-wm-sb {
border: 1px solid #bbb;
font-size: 16px;
line-height: normal;
vertical-align: top;
color: #444;
border-radius: 2px;
}
#goog-wm-qt {
width: 220px;
height: 20px;
padding: 5px;
margin: 5px 10px 0 0;
box-shadow: inset 0 1px 1px #ccc;
}
#goog-wm-sb {
display: inline-block;
height: 32px;
padding: 0 10px;
margin: 5px 0 0;
white-space: nowrap;
cursor: pointer;
background-color: #f5f5f5;
background-image: -webkit-linear-gradient(rgba(255,255,255,0), #f1f1f1);
background-image: -moz-linear-gradient(rgba(255,255,255,0), #f1f1f1);
background-image: -ms-linear-gradient(rgba(255,255,255,0), #f1f1f1);
background-image: -o-linear-gradient(rgba(255,255,255,0), #f1f1f1);
-webkit-appearance: none;
-moz-appearance: none;
appearance: none;
*overflow: visible;
*display: inline;
*zoom: 1;
}
#goog-wm-sb:hover,
#goog-wm-sb:focus {
border-color: #aaa;
box-shadow: 0 1px 1px rgba(0, 0, 0, 0.1);
background-color: #f8f8f8;
}
#goog-wm-qt:hover,
#goog-wm-qt:focus {
border-color: #105cb6;
outline: 0;
color: #222;
}
input::-moz-focus-inner {
padding: 0;
border: 0;
}
</style>
</head>
<body>
<div class="container">
<h1>Not found <span>:(</span></h1>
<p>Sorry, but the page you were trying to view does not exist.</p>
<p>It looks like this was the result of either:</p>
<ul>
<li>a mistyped address</li>
<li>an out-of-date link</li>
</ul>
<script>
var GOOG_FIXURL_LANG = (navigator.language || '').slice(0,2),GOOG_FIXURL_SITE = location.host;
</script>
<script src="//linkhelp.clients.google.com/tbproxy/lh/wm/fixurl.js"></script>
</div>
</body>
</html>

43
README.md 100644
Wyświetl plik

@ -0,0 +1,43 @@
bristol-seds.github.io
======================
Available at http://bristol-seds.github.io/.
## Running the server for local testing
You need Jekyll installed:
$ sudo gem install jekyll RedCloth
Start Jekyll:
$ jekyll serve --watch
Note that changes to `_config.yml` may require restarting the server.
## Adding photo carousels
First put all photos in the `asset_path` directory for a post. Then list all in the front-matter like so:
photos:
- url: photo1.jpg
- url: photo2.jpg
- url: photo3.jpg
Then simply add {% raw %}`{% include carousel.html %}`{% raw %} where you want the carousel.
## Adding Javascript to posts
Make sure your post has an `asset_path` key-value pair.
### Google Maps
Add a new key, `maps:`, with a list of `url:` key-value pairs as its value, each having
a script containing a Google Maps generator as its value, e.g.:
maps:
- url: map1.js
- url: map2.js
The scripts should be placed in the `asset_path` directory.
For each map, insert a `<div>` tag into the post, with a unique ID referenced by the map generator script.
**TO-DO**: Google Maps KML files must be hosted publicly. Find a way to automatically insert the KML file's fully-qualified url into a map script. Currently I'm just hosting them from http://samhatfield.co.uk

16
_config.yml 100644
Wyświetl plik

@ -0,0 +1,16 @@
# Site settings
title: Bristol SEDS
email:
description:
Homepage for the Univeristy of Bristol Students for the Exploration and Development of Space
baseurl: "" # the subpath of your site, e.g. /blog/
url: "http://www.bristol-seds.co.uk" # the base hostname & protocol for your site
twitter_username:
github_username: bristol-seds
flickr_username: bristolseds
facebook_group: "Bristol SEDS"
# Build settings
markdown: kramdown
excerpt_separator: <!--more-->

Wyświetl plik

@ -0,0 +1,30 @@
<div class="row">
<div class="col-xs-12">
<div id="image-carousel" class="carousel slide carousel-max-width-800" data-ride="carousel">
<ol class="carousel-indicators">
{% for photo in page.photos %}
<li data-target="#image-carousel" data-slide-to="{{ forloop.index }}" {% if forloop.first %}class="active"{% endif %}></li>
{% endfor %}
</ol>
<div class="carousel-inner">
{% for photo in page.photos %}
<div class="item {% if forloop.first %}active{% endif %}">
<img src="{{ photo.url | prepend: page.asset_path }}">
</div>
{% endfor %}
</div>
<a class="left carousel-control" href="#image-carousel" role="button" data-slide="prev">
<span class="glyphicon glyphicon-chevron-left"></span>
</a>
<a class="right carousel-control" href="#image-carousel" role="button" data-slide="next">
<span class="glyphicon glyphicon-chevron-right"></span>
</a>
</div>
</div>
</div>

Wyświetl plik

@ -0,0 +1,66 @@
<div class="navbar navbar-default navbar-static-bottom" style="margin:0">
<div class="container">
<ul class="nav navbar-nav">
{% if site.github_username %}
<li>
<a href="https://github.com/{{ site.github_username }}">
<span class="icon icon--github">
<svg viewBox="0 0 16 16">
<path d="M7.999,0.431c-4.285,0-7.76,3.474-7.76,7.761 c0,3.428,2.223,6.337,5.307,7.363c0.388,0.071,0.53-0.168,0.53-0.374c0-0.184-0.007-0.672-0.01-1.32 c-2.159,0.469-2.614-1.04-2.614-1.04c-0.353-0.896-0.862-1.135-0.862-1.135c-0.705-0.481,0.053-0.472,0.053-0.472 c0.779,0.055,1.189,0.8,1.189,0.8c0.692,1.186,1.816,0.843,2.258,0.645c0.071-0.502,0.271-0.843,0.493-1.037 C4.86,11.425,3.049,10.76,3.049,7.786c0-0.847,0.302-1.54,0.799-2.082C3.768,5.507,3.501,4.718,3.924,3.65 c0,0,0.652-0.209,2.134,0.796C6.677,4.273,7.34,4.187,8,4.184c0.659,0.003,1.323,0.089,1.943,0.261 c1.482-1.004,2.132-0.796,2.132-0.796c0.423,1.068,0.157,1.857,0.077,2.054c0.497,0.542,0.798,1.235,0.798,2.082 c0,2.981-1.814,3.637-3.543,3.829c0.279,0.24,0.527,0.713,0.527,1.437c0,1.037-0.01,1.874-0.01,2.129 c0,0.208,0.14,0.449,0.534,0.373c3.081-1.028,5.302-3.935,5.302-7.362C15.76,3.906,12.285,0.431,7.999,0.431z"/>-->
</svg>
</span>
<span class="username">{{ site.github_username }}</span>
</a>
</li>
{% endif %}
{% if site.twitter_username %}
<li>
<a href="https://twitter.com/{{ site.twitter_username }}">
<span class="icon icon--twitter">
<svg viewBox="0 0 16 16">
<path d="M15.969,3.058c-0.586,0.26-1.217,0.436-1.878,0.515c0.675-0.405,1.194-1.045,1.438-1.809
c-0.632,0.375-1.332,0.647-2.076,0.793c-0.596-0.636-1.446-1.033-2.387-1.033c-1.806,0-3.27,1.464-3.27,3.27 c0,0.256,0.029,0.506,0.085,0.745C5.163,5.404,2.753,4.102,1.14,2.124C0.859,2.607,0.698,3.168,0.698,3.767 c0,1.134,0.577,2.135,1.455,2.722C1.616,6.472,1.112,6.325,0.671,6.08c0,0.014,0,0.027,0,0.041c0,1.584,1.127,2.906,2.623,3.206 C3.02,9.402,2.731,9.442,2.433,9.442c-0.211,0-0.416-0.021-0.615-0.059c0.416,1.299,1.624,2.245,3.055,2.271 c-1.119,0.877-2.529,1.4-4.061,1.4c-0.264,0-0.524-0.015-0.78-0.046c1.447,0.928,3.166,1.469,5.013,1.469 c6.015,0,9.304-4.983,9.304-9.304c0-0.142-0.003-0.283-0.009-0.423C14.976,4.29,15.531,3.714,15.969,3.058z"/>
</svg>
</span>
<span class="username">{{ site.twitter_username }}</span>
</a>
</li>
{% endif %}
{% if site.flickr_username %}
<li>
<a href="https://www.flickr.com/photos/bristol-seds">
<span class="icon icon--flickr">
<svg viewBox="0 0 16 16">
<path d="M3.630,4.8C1.637,4.8 0,6.378 0,8.370 0,10.363 1.637,12 3.630,12 5.622,12 7.2,10.363 7.2,8.370 7.2,6.378 5.622,4.8 3.630,4.8 z"/>
<path d="M12.370,4.8C10.378,4.8 8.8,6.378 8.8,8.370 8.8,10.363 10.378,12 12.370,12 14.363,12 16,10.363 16,8.370 16,6.378 14.362,4.8 12.370,4.8 z"/>
</svg>
</span>
<span class="username">{{ site.flickr_username }}</span>
</a>
</li>
{% endif %}
{% if site.facebook_group %}
<li>
<a href="https://www.facebook.com/groups/bristolseds/">
<span class="icon icon--facebook">
<svg viewBox="0 0 16 16">
<path d="M0.883,0C0.395,0 0,0.395 0,0.883l0,14.235c0,0.488 0.395,0.883 0.883,0.883l7.663,0 0,-6.197-2.086,0 0,-2.415 2.086,0 0,-1.779c0,-2.067 1.263,-3.193 3.107,-3.193 0.883,0 1.641,0.0656 1.862,0.0951l0,2.161 -1.279,0c-1.003,0-1.197,0.477-1.197,1.176l0,1.540 2.392,0-0.312,2.415-2.0798,0 0,6.197 4.078,0c0.488,0 0.883,-0.395 0.8827,-0.883l0,-14.235c0,-0.488-0.395,-0.883-0.883,-0.883l-14.235,0z"/>
</svg>
</span>
<span class="username">{{ site.facebook_group }}</span>
</a>
</li>
{% endif %}
</ul>
<ul class="nav navbar-nav navbar-right">
<li>
<a href="https://www.ubu.org.uk/activities/societies/9490/">Proud to be part of<img height="24" style="margin-left: 4px" src="{{ "/assets/logos/bristol-su.png" | prepend: site.baseurl }}"></a>
</li>
</ul>
</div>
</div>

Wyświetl plik

@ -0,0 +1,52 @@
<!--[if lt IE 7]> <html class="no-js lt-ie9 lt-ie8 lt-ie7"> <![endif]-->
<!--[if IE 7]> <html class="no-js lt-ie9 lt-ie8"> <![endif]-->
<!--[if IE 8]> <html class="no-js lt-ie9"> <![endif]-->
<!--[if gt IE 8]><!--> <html class="no-js"> <!--<![endif]-->
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width initial-scale=1" />
<meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1">
<link rel="apple-touch-icon" sizes="57x57" href="/apple-touch-icon-57x57.png">
<link rel="apple-touch-icon" sizes="114x114" href="/apple-touch-icon-114x114.png">
<link rel="apple-touch-icon" sizes="72x72" href="/apple-touch-icon-72x72.png">
<link rel="apple-touch-icon" sizes="144x144" href="/apple-touch-icon-144x144.png">
<link rel="apple-touch-icon" sizes="60x60" href="/apple-touch-icon-60x60.png">
<link rel="apple-touch-icon" sizes="120x120" href="/apple-touch-icon-120x120.png">
<link rel="apple-touch-icon" sizes="76x76" href="/apple-touch-icon-76x76.png">
<link rel="apple-touch-icon" sizes="152x152" href="/apple-touch-icon-152x152.png">
<link rel="apple-touch-icon" sizes="180x180" href="/apple-touch-icon-180x180.png">
<link rel="icon" type="image/png" href="/favicon-192x192.png" sizes="192x192">
<link rel="icon" type="image/png" href="/favicon-160x160.png" sizes="160x160">
<link rel="icon" type="image/png" href="/favicon-96x96.png" sizes="96x96">
<link rel="icon" type="image/png" href="/favicon-16x16.png" sizes="16x16">
<link rel="icon" type="image/png" href="/favicon-32x32.png" sizes="32x32">
<meta name="msapplication-TileColor" content="#00aba9">
<meta name="msapplication-TileImage" content="/mstile-144x144.png">
<title>{% if page.title %}{{ page.title }}{% else %}{{ site.title }}{% endif %}</title>
<meta name="description" content="{{ site.description }}">
<link rel="canonical" href="{{ page.url | replace:'index.html','' | prepend: site.baseurl | prepend: site.url }}">
<!-- ============================================================== -->
<!-- Styles -->
<!-- ============================================================== -->
<!-- Bootstrap -->
<link rel="stylesheet" href="{{ "/lib/bootstrap/css/bootstrap.min.css" | prepend: site.baseurl }}">
<!-- Custom Stylesheet -->
<link rel="stylesheet" href="{{ "/main.css" | prepend: site.baseurl }}">
<!-- nvd3.js -->
{% if page.graphs %}
<link rel="stylesheet" href="/lib/nvd3/nv.d3.min.css">
{% endif %}
<!-- HTML5 Shim and Respond.js IE8 support of HTML5 elements and media queries -->
<!-- WARNING: Respond.js doesn't work if you view the page via file:// -->
<!--[if lt IE 9]>
<script src="https://oss.maxcdn.com/html5shiv/3.7.2/html5shiv.min.js"></script>
<script src="https://oss.maxcdn.com/respond/1.4.2/respond.min.js"></script>
<![endif]-->
</head>

Wyświetl plik

@ -0,0 +1,42 @@
<!--[if lt IE 7]>
<p class="browsehappy">You are using an <strong>outdated</strong> browser. Please <a href="http://browsehappy.com/">upgrade your browser</a> to improve your experience.</p>
<![endif]-->
<div class="navbar navbar-default navbar-static-top" style="margin:0">
<div class="container">
<div class="navbar-header">
<button type="button" class="navbar-toggle collapsed" data-toggle="collapse" data-target=".navbar-collapse">
<span class="sr-only">Toggle navigation</span>
<span class="icon-bar"></span>
<span class="icon-bar"></span>
<span class="icon-bar"></span>
</button>
<a href="{{ "/" | prepend: site.baseurl }}" class="navbar-brand">
<strong>UBSEDS</strong>
</a>
</div>
<div class="navbar-collapse collapse">
<ul class="nav navbar-nav">
<li>
<a href="{{ "/projects.html" | prepend: site.baseurl }}">Projects</a>
</li>
<li>
<a href="{{ "/committee.html" | prepend: site.baseurl }}">Committee</a>
</li>
</ul>
<ul class="nav navbar-nav navbar-right">
<li>
<a href="http://bris.ac.uk">
University of Bristol
<img style="margin-left:5px;" width="20" height="20" src="{{ "/assets/logos/bristol_university_logo.png" | prepend: site.baseurl }}">
</a>
</li>
<li>
<a href="http://ukseds.org">
<img height="14" src="{{ "/assets/logos/uksedssmall.png" | prepend: site.baseurl }}">
</a>
</li>
</ul>
</div>
</div>
</div>

Wyświetl plik

@ -0,0 +1,6 @@
<div class="panel panel-default">
<div class="panel-body bg-danger">
<span class="glyphicon glyphicon-warning-sign"></span>
<p>The project described in this post is no longer in development, and this post is only being included for historical reasons. Please check the <a href="/">Homepage</a> for links to current projects.</p>
</div>
</div>

Wyświetl plik

@ -0,0 +1,40 @@
<!-- ============================================================== -->
<!-- Scripts -->
<!-- ============================================================== -->
<!-- jQuery from CDN, if that fails use the local copy -->
<script src="//ajax.googleapis.com/ajax/libs/jquery/1.11.1/jquery.min.js"></script>
<script>window.jQuery || document.write('<script src="/lib/jquery/jquery-1.11.1.min.js"><\/script>')</script>
<!-- jQuery plugins -->
<script src="/lib/jquery/plugins.js"></script>
<!-- Bootstrap -->
<script src="/lib/bootstrap/js/bootstrap.min.js"></script>
<!-- Google Analytics: change UA-XXXXX-X to be your site's ID. -->
<script>
(function(i,s,o,g,r,a,m){i['GoogleAnalyticsObject']=r;i[r]=i[r]||function(){
(i[r].q=i[r].q||[]).push(arguments)},i[r].l=1*new Date();a=s.createElement(o),
m=s.getElementsByTagName(o)[0];a.async=1;a.src=g;m.parentNode.insertBefore(a,m)
})(window,document,'script','//www.google-analytics.com/analytics.js','ga');
ga('create', 'UA-55296093-1', 'auto');
ga('send', 'pageview');
</script>
<!-- Google Maps -->
{% if page.maps %}
<script src="https://maps.googleapis.com/maps/api/js?v=3.exp"></script>
{% for map in page.maps %}
<script src="{{ map.url | prepend: page.asset_path }}"></script>
{% endfor %}
{% endif %}
<!-- nvd3 Graphs -->
{% if page.graphs %}
<script src="/lib/nvd3/d3.min.js"></script>
<script src="/lib/nvd3/nv.d3.min.js"></script>
{% for graph in page.graphs %}
<script src="{{ graph.url | prepend: page.asset_path }}"></script>
{% endfor %}
{% endif %}

Wyświetl plik

@ -0,0 +1,17 @@
<!DOCTYPE html>
<html>
{% include head.html %}
<body>
{% include header.html %}
<!-- ============================================================== -->
<!-- Container -->
<!-- ============================================================== -->
{{ content }}
{% include footer.html %}
{% include scripts.html %}
</body>
</html>

14
_layouts/page.html 100644
Wyświetl plik

@ -0,0 +1,14 @@
---
layout: default
---
<div class="post">
<header class="post-header">
<h1 class="post-title">{{ page.title }}</h1>
</header>
<article class="post-content">
{{ content }}
</article>
</div>

15
_layouts/post.html 100644
Wyświetl plik

@ -0,0 +1,15 @@
---
layout: default
---
<div class="container">
<div class="post">
<header class="post-header">
<h1 class="post-title">{{ page.title }}</h1>
<p class="post-meta">{{ page.date | date: "%B %Y" }}{% if page.author %} • {{ page.author }}{% endif %}{% if page.meta %} • {{ page.meta }}{% endif %}</p>
</header>
<article class="post-content">
{{ content }}
</article>
</div>
</div>

205
_sass/_base.scss 100644
Wyświetl plik

@ -0,0 +1,205 @@
/**
* Reset some basic elements
*/
body, h1, h2, h3, h4, h5, h6,
p, blockquote, pre, hr,
dl, dd, ol, ul, figure {
margin: 0;
padding: 0;
}
/**
* Basic styling
*/
body {
font-family: $base-font-family;
font-size: $base-font-size;
line-height: $base-line-height;
font-weight: 300;
color: $text-color;
background-color: $background-color;
-webkit-text-size-adjust: 100%;
padding: 20px;
}
/**
* Set `margin-bottom` to maintain vertical rhythm
*/
h1, h2, h3, h4, h5, h6,
p, blockquote, pre,
ul, ol, dl, figure,
%vertical-rhythm {
margin-bottom: $spacing-unit / 2;
}
/**
* Images
*/
img {
max-width: 100%;
vertical-align: middle;
}
/**
* Figures
*/
figure > img {
display: block;
}
figcaption {
font-size: $small-font-size;
}
/**
* Lists
*/
ul, ol {
margin-left: $spacing-unit;
}
li {
> ul,
> ol {
margin-bottom: 0;
}
}
/**
* Headings
*/
h1, h2, h3, h4, h5, h6 {
font-weight: 300;
}
/**
* Links
*/
a {
color: $brand-color;
text-decoration: none;
&:visited {
color: darken($brand-color, 15%);
}
&:hover {
color: $text-color;
text-decoration: underline;
}
}
/**
* Blockquotes
*/
blockquote {
color: $grey-color;
border-left: 4px solid $grey-color-light;
padding-left: $spacing-unit / 2;
font-size: 18px;
letter-spacing: -1px;
font-style: italic;
> :last-child {
margin-bottom: 0;
}
}
/**
* Code formatting
*/
pre,
code {
font-size: 15px;
border: 1px solid $grey-color-light;
border-radius: 3px;
background-color: #eef;
}
code {
padding: 1px 5px;
}
pre {
padding: 8px 12px;
overflow-x: scroll;
> code {
border: 0;
padding-right: 0;
padding-left: 0;
}
}
/**
* Wrapper
*/
.wrapper {
max-width: -webkit-calc(800px - (#{$spacing-unit} * 2));
max-width: calc(800px - (#{$spacing-unit} * 2));
margin-right: auto;
margin-left: auto;
padding-right: $spacing-unit;
padding-left: $spacing-unit;
@extend %clearfix;
@include media-query($on-laptop) {
max-width: -webkit-calc(800px - (#{$spacing-unit}));
max-width: calc(800px - (#{$spacing-unit}));
padding-right: $spacing-unit / 2;
padding-left: $spacing-unit / 2;
}
}
/**
* Clearfix
*/
%clearfix {
&:after {
content: "";
display: table;
clear: both;
}
}
/**
* Icons
*/
.icon {
> svg {
display: inline-block;
width: 16px;
height: 16px;
vertical-align: middle;
path {
fill: $grey-color;
}
}
}

161
_sass/_custom.scss 100644
Wyświetl plik

@ -0,0 +1,161 @@
/**
* Basic styling
*/
body {
font-family: $base-font-family;
}
a:hover, a:focus {
text-decoration: none;
}
/**
* Styling for the top left of the navbar
*/
.navbar-brand strong {
color: rgb(190,0,0);
}
.navbar-brand strong:hover {
color: rgb(140,0,0);
}
/**
* Icons
*/
.icon {
> svg {
display: inline;
width: 16px;
height: 19px;
vertical-align: text-bottom;
path {
fill: grey;
}
}
}
/**
* Carousel
*/
.carousel-max-width-1920 {
max-width: 1920px;
margin-left: auto;
margin-right: auto;
}
.carousel-max-width-800 {
max-width: 800px;
margin-left: auto;
margin-right: auto;
}
/**
* Maps
*/
.map-canvas {
height: 400px;
max-width: 600px;
margin-left: auto;
margin-right: auto;
}
/**
* Charts
*/
.nvd3 text {
font: 400 12px 'Open Sans'
}
/**
* Code formatting
*/
pre,
code {
border: 1px solid lighten(gray, 40%);
border-radius: 3px;
background-color: #eef;
}
code {
padding: 1px 5px;
}
pre {
padding: 8px 12px;
overflow-x: scroll;
> code {
border: 0;
padding-right: 0;
padding-left: 0;
}
}
/**
* Committee Page
*/
#committee-gallery img {
max-width:18rem;
}
#committee-gallery li {
border: solid white;
margin: 20px
}
#committee-gallery a {
padding-right: 1em;
white-space: nowrap
}
/**
* Posts
*/
.post-list {
margin-left: 0;
list-style: none;
> li {
margin-bottom: $spacing-unit;
}
}
.post-meta {
font-size: 16px * 0.875;
color: gray;
}
.post-link {
display: block;
font-size: 24px;
}
.post-header {
margin-bottom: $spacing-unit;
}
.post-title {
font-size: 42px;
letter-spacing: -1px;
line-height: 1;
}
.post-content {
margin-bottom: $spacing-unit;
h2 {
font-size: 32px;
}
h3 {
font-size: 26px;
}
h4 {
font-size: 20px;
}
img {
max-width: 800px;
margin-left: auto;
margin-right: auto;
}
}
.glyphicon-warning-sign {
font-size: 4em;
color: #f77;
padding-right: 10px;
float: right
}

236
_sass/_layout.scss 100644
Wyświetl plik

@ -0,0 +1,236 @@
/**
* Site header
*/
.site-header {
border-top: 5px solid $grey-color-dark;
border-bottom: 1px solid $grey-color-light;
min-height: 56px;
// Positioning context for the mobile navigation icon
position: relative;
}
.site-title {
font-size: 26px;
line-height: 56px;
letter-spacing: -1px;
margin-bottom: 0;
float: left;
&,
&:visited {
color: $grey-color-dark;
}
}
.site-nav {
float: right;
line-height: 56px;
.menu-icon {
display: none;
}
.page-link {
color: $text-color;
line-height: $base-line-height;
// Gaps between nav items, but not on the first one
&:not(:first-child) {
margin-left: 20px;
}
}
@include media-query($on-palm) {
position: absolute;
top: 9px;
right: 30px;
background-color: $background-color;
border: 1px solid $grey-color-light;
border-radius: 5px;
text-align: right;
.menu-icon {
display: block;
float: right;
width: 36px;
height: 26px;
line-height: 0;
padding-top: 10px;
text-align: center;
> svg {
width: 18px;
height: 15px;
path {
fill: $grey-color-dark;
}
}
}
.trigger {
clear: both;
display: none;
}
&:hover .trigger {
display: block;
padding-bottom: 5px;
}
.page-link {
display: block;
padding: 5px 10px;
}
}
}
/**
* Site footer
*/
.site-footer {
border-top: 1px solid $grey-color-light;
padding: $spacing-unit 0;
}
.footer-heading {
font-size: 18px;
margin-bottom: $spacing-unit / 2;
}
.contact-list,
.social-media-list {
list-style: none;
margin-left: 0;
}
.footer-col-wrapper {
font-size: 15px;
color: $grey-color;
margin-left: -$spacing-unit / 2;
@extend %clearfix;
}
.footer-col {
float: left;
margin-bottom: $spacing-unit / 2;
padding-left: $spacing-unit / 2;
}
.footer-col-1 {
width: -webkit-calc(35% - (#{$spacing-unit} / 2));
width: calc(35% - (#{$spacing-unit} / 2));
}
.footer-col-2 {
width: -webkit-calc(20% - (#{$spacing-unit} / 2));
width: calc(20% - (#{$spacing-unit} / 2));
}
.footer-col-3 {
width: -webkit-calc(45% - (#{$spacing-unit} / 2));
width: calc(45% - (#{$spacing-unit} / 2));
}
@include media-query($on-laptop) {
.footer-col-1,
.footer-col-2 {
width: -webkit-calc(50% - (#{$spacing-unit} / 2));
width: calc(50% - (#{$spacing-unit} / 2));
}
.footer-col-3 {
width: -webkit-calc(100% - (#{$spacing-unit} / 2));
width: calc(100% - (#{$spacing-unit} / 2));
}
}
@include media-query($on-palm) {
.footer-col {
float: none;
width: -webkit-calc(100% - (#{$spacing-unit} / 2));
width: calc(100% - (#{$spacing-unit} / 2));
}
}
/**
* Page content
*/
.page-content {
padding: $spacing-unit 0;
}
.page-heading {
font-size: 20px;
}
.post-list {
margin-left: 0;
list-style: none;
> li {
margin-bottom: $spacing-unit;
}
}
.post-meta {
font-size: $small-font-size;
color: $grey-color;
}
.post-link {
display: block;
font-size: 24px;
}
/**
* Posts
*/
.post-header {
margin-bottom: $spacing-unit;
}
.post-title {
font-size: 42px;
letter-spacing: -1px;
line-height: 1;
@include media-query($on-laptop) {
font-size: 36px;
}
}
.post-content {
margin-bottom: $spacing-unit;
h2 {
font-size: 32px;
@include media-query($on-laptop) {
font-size: 28px;
}
}
h3 {
font-size: 26px;
@include media-query($on-laptop) {
font-size: 22px;
}
}
h4 {
font-size: 20px;
@include media-query($on-laptop) {
font-size: 18px;
}
}
}

Wyświetl plik

@ -0,0 +1,67 @@
/**
* Syntax highlighting styles
*/
.highlight {
background: #fff;
margin-bottom: $spacing-unit / 2;
.c { color: #998; font-style: italic } // Comment
.err { color: #a61717; background-color: #e3d2d2 } // Error
.k { font-weight: bold } // Keyword
.o { font-weight: bold } // Operator
.cm { color: #998; font-style: italic } // Comment.Multiline
.cp { color: #999; font-weight: bold } // Comment.Preproc
.c1 { color: #998; font-style: italic } // Comment.Single
.cs { color: #999; font-weight: bold; font-style: italic } // Comment.Special
.gd { color: #000; background-color: #fdd } // Generic.Deleted
.gd .x { color: #000; background-color: #faa } // Generic.Deleted.Specific
.ge { font-style: italic } // Generic.Emph
.gr { color: #a00 } // Generic.Error
.gh { color: #999 } // Generic.Heading
.gi { color: #000; background-color: #dfd } // Generic.Inserted
.gi .x { color: #000; background-color: #afa } // Generic.Inserted.Specific
.go { color: #888 } // Generic.Output
.gp { color: #555 } // Generic.Prompt
.gs { font-weight: bold } // Generic.Strong
.gu { color: #aaa } // Generic.Subheading
.gt { color: #a00 } // Generic.Traceback
.kc { font-weight: bold } // Keyword.Constant
.kd { font-weight: bold } // Keyword.Declaration
.kp { font-weight: bold } // Keyword.Pseudo
.kr { font-weight: bold } // Keyword.Reserved
.kt { color: #458; font-weight: bold } // Keyword.Type
.m { color: #099 } // Literal.Number
.s { color: #d14 } // Literal.String
.na { color: #008080 } // Name.Attribute
.nb { color: #0086B3 } // Name.Builtin
.nc { color: #458; font-weight: bold } // Name.Class
.no { color: #008080 } // Name.Constant
.ni { color: #800080 } // Name.Entity
.ne { color: #900; font-weight: bold } // Name.Exception
.nf { color: #900; font-weight: bold } // Name.Function
.nn { color: #555 } // Name.Namespace
.nt { color: #000080 } // Name.Tag
.nv { color: #008080 } // Name.Variable
.ow { font-weight: bold } // Operator.Word
.w { color: #bbb } // Text.Whitespace
.mf { color: #099 } // Literal.Number.Float
.mh { color: #099 } // Literal.Number.Hex
.mi { color: #099 } // Literal.Number.Integer
.mo { color: #099 } // Literal.Number.Oct
.sb { color: #d14 } // Literal.String.Backtick
.sc { color: #d14 } // Literal.String.Char
.sd { color: #d14 } // Literal.String.Doc
.s2 { color: #d14 } // Literal.String.Double
.se { color: #d14 } // Literal.String.Escape
.sh { color: #d14 } // Literal.String.Heredoc
.si { color: #d14 } // Literal.String.Interpol
.sx { color: #d14 } // Literal.String.Other
.sr { color: #009926 } // Literal.String.Regex
.s1 { color: #d14 } // Literal.String.Single
.ss { color: #990073 } // Literal.String.Symbol
.bp { color: #999 } // Name.Builtin.Pseudo
.vc { color: #008080 } // Name.Variable.Class
.vg { color: #008080 } // Name.Variable.Global
.vi { color: #008080 } // Name.Variable.Instance
.il { color: #099 } // Literal.Number.Integer.Long
}

157
_site/404.html 100644
Wyświetl plik

@ -0,0 +1,157 @@
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<title>Page Not Found :(</title>
<style>
::-moz-selection {
background: #b3d4fc;
text-shadow: none;
}
::selection {
background: #b3d4fc;
text-shadow: none;
}
html {
padding: 30px 10px;
font-size: 20px;
line-height: 1.4;
color: #737373;
background: #f0f0f0;
-webkit-text-size-adjust: 100%;
-ms-text-size-adjust: 100%;
}
html,
input {
font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
}
body {
max-width: 500px;
_width: 500px;
padding: 30px 20px 50px;
border: 1px solid #b3b3b3;
border-radius: 4px;
margin: 0 auto;
box-shadow: 0 1px 10px #a7a7a7, inset 0 1px 0 #fff;
background: #fcfcfc;
}
h1 {
margin: 0 10px;
font-size: 50px;
text-align: center;
}
h1 span {
color: #bbb;
}
h3 {
margin: 1.5em 0 0.5em;
}
p {
margin: 1em 0;
}
ul {
padding: 0 0 0 40px;
margin: 1em 0;
}
.container {
max-width: 380px;
_width: 380px;
margin: 0 auto;
}
/* google search */
#goog-fixurl ul {
list-style: none;
padding: 0;
margin: 0;
}
#goog-fixurl form {
margin: 0;
}
#goog-wm-qt,
#goog-wm-sb {
border: 1px solid #bbb;
font-size: 16px;
line-height: normal;
vertical-align: top;
color: #444;
border-radius: 2px;
}
#goog-wm-qt {
width: 220px;
height: 20px;
padding: 5px;
margin: 5px 10px 0 0;
box-shadow: inset 0 1px 1px #ccc;
}
#goog-wm-sb {
display: inline-block;
height: 32px;
padding: 0 10px;
margin: 5px 0 0;
white-space: nowrap;
cursor: pointer;
background-color: #f5f5f5;
background-image: -webkit-linear-gradient(rgba(255,255,255,0), #f1f1f1);
background-image: -moz-linear-gradient(rgba(255,255,255,0), #f1f1f1);
background-image: -ms-linear-gradient(rgba(255,255,255,0), #f1f1f1);
background-image: -o-linear-gradient(rgba(255,255,255,0), #f1f1f1);
-webkit-appearance: none;
-moz-appearance: none;
appearance: none;
*overflow: visible;
*display: inline;
*zoom: 1;
}
#goog-wm-sb:hover,
#goog-wm-sb:focus {
border-color: #aaa;
box-shadow: 0 1px 1px rgba(0, 0, 0, 0.1);
background-color: #f8f8f8;
}
#goog-wm-qt:hover,
#goog-wm-qt:focus {
border-color: #105cb6;
outline: 0;
color: #222;
}
input::-moz-focus-inner {
padding: 0;
border: 0;
}
</style>
</head>
<body>
<div class="container">
<h1>Not found <span>:(</span></h1>
<p>Sorry, but the page you were trying to view does not exist.</p>
<p>It looks like this was the result of either:</p>
<ul>
<li>a mistyped address</li>
<li>an out-of-date link</li>
</ul>
<script>
var GOOG_FIXURL_LANG = (navigator.language || '').slice(0,2),GOOG_FIXURL_SITE = location.host;
</script>
<script src="//linkhelp.clients.google.com/tbproxy/lh/wm/fixurl.js"></script>
</div>
</body>
</html>

1
_site/CNAME 100644
Wyświetl plik

@ -0,0 +1 @@
www.bristol-seds.co.uk

43
_site/README.md 100644
Wyświetl plik

@ -0,0 +1,43 @@
bristol-seds.github.io
======================
Available at http://bristol-seds.github.io/.
## Running the server for local testing
You need Jekyll installed:
$ sudo gem install jekyll RedCloth
Start Jekyll:
$ jekyll serve --watch
Note that changes to `_config.yml` may require restarting the server.
## Adding photo carousels
First put all photos in the `asset_path` directory for a post. Then list all in the front-matter like so:
photos:
- url: photo1.jpg
- url: photo2.jpg
- url: photo3.jpg
Then simply add {% raw %}`{% include carousel.html %}`{% raw %} where you want the carousel.
## Adding Javascript to posts
Make sure your post has an `asset_path` key-value pair.
### Google Maps
Add a new key, `maps:`, with a list of `url:` key-value pairs as its value, each having
a script containing a Google Maps generator as its value, e.g.:
maps:
- url: map1.js
- url: map2.js
The scripts should be placed in the `asset_path` directory.
For each map, insert a `<div>` tag into the post, with a unique ID referenced by the map generator script.
**TO-DO**: Google Maps KML files must be hosted publicly. Find a way to automatically insert the KML file's fully-qualified url into a map script. Currently I'm just hosting them from http://samhatfield.co.uk

Wyświetl plik

@ -0,0 +1,207 @@
<!DOCTYPE html>
<html>
<!--[if lt IE 7]> <html class="no-js lt-ie9 lt-ie8 lt-ie7"> <![endif]-->
<!--[if IE 7]> <html class="no-js lt-ie9 lt-ie8"> <![endif]-->
<!--[if IE 8]> <html class="no-js lt-ie9"> <![endif]-->
<!--[if gt IE 8]><!--> <html class="no-js"> <!--<![endif]-->
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width initial-scale=1" />
<meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1">
<link rel="apple-touch-icon" sizes="57x57" href="/apple-touch-icon-57x57.png">
<link rel="apple-touch-icon" sizes="114x114" href="/apple-touch-icon-114x114.png">
<link rel="apple-touch-icon" sizes="72x72" href="/apple-touch-icon-72x72.png">
<link rel="apple-touch-icon" sizes="144x144" href="/apple-touch-icon-144x144.png">
<link rel="apple-touch-icon" sizes="60x60" href="/apple-touch-icon-60x60.png">
<link rel="apple-touch-icon" sizes="120x120" href="/apple-touch-icon-120x120.png">
<link rel="apple-touch-icon" sizes="76x76" href="/apple-touch-icon-76x76.png">
<link rel="apple-touch-icon" sizes="152x152" href="/apple-touch-icon-152x152.png">
<link rel="apple-touch-icon" sizes="180x180" href="/apple-touch-icon-180x180.png">
<link rel="icon" type="image/png" href="/favicon-192x192.png" sizes="192x192">
<link rel="icon" type="image/png" href="/favicon-160x160.png" sizes="160x160">
<link rel="icon" type="image/png" href="/favicon-96x96.png" sizes="96x96">
<link rel="icon" type="image/png" href="/favicon-16x16.png" sizes="16x16">
<link rel="icon" type="image/png" href="/favicon-32x32.png" sizes="32x32">
<meta name="msapplication-TileColor" content="#00aba9">
<meta name="msapplication-TileImage" content="/mstile-144x144.png">
<title>About</title>
<meta name="description" content="Homepage for the Univeristy of Bristol Students for the Exploration and Development of Space">
<link rel="canonical" href="http://www.bristol-seds.co.uk/about/">
<!-- ============================================================== -->
<!-- Styles -->
<!-- ============================================================== -->
<!-- Bootstrap -->
<link rel="stylesheet" href="/lib/bootstrap/css/bootstrap.min.css">
<!-- Custom Stylesheet -->
<link rel="stylesheet" href="/main.css">
<!-- nvd3.js -->
<!-- HTML5 Shim and Respond.js IE8 support of HTML5 elements and media queries -->
<!-- WARNING: Respond.js doesn't work if you view the page via file:// -->
<!--[if lt IE 9]>
<script src="https://oss.maxcdn.com/html5shiv/3.7.2/html5shiv.min.js"></script>
<script src="https://oss.maxcdn.com/respond/1.4.2/respond.min.js"></script>
<![endif]-->
</head>
<body>
<!--[if lt IE 7]>
<p class="browsehappy">You are using an <strong>outdated</strong> browser. Please <a href="http://browsehappy.com/">upgrade your browser</a> to improve your experience.</p>
<![endif]-->
<div class="navbar navbar-default navbar-static-top" style="margin:0">
<div class="container">
<div class="navbar-header">
<button type="button" class="navbar-toggle collapsed" data-toggle="collapse" data-target=".navbar-collapse">
<span class="sr-only">Toggle navigation</span>
<span class="icon-bar"></span>
<span class="icon-bar"></span>
<span class="icon-bar"></span>
</button>
<a href="/" class="navbar-brand">
<strong>UBSEDS</strong>
</a>
</div>
<div class="navbar-collapse collapse">
<ul class="nav navbar-nav">
<li>
<a href="/projects.html">Projects</a>
</li>
<li>
<a href="/committee.html">Committee</a>
</li>
</ul>
<ul class="nav navbar-nav navbar-right">
<li>
<a href="http://bris.ac.uk">
University of Bristol
<img style="margin-left:5px;" width="20" height="20" src="/assets/logos/bristol_university_logo.png">
</a>
</li>
<li>
<a href="http://ukseds.org">
<img height="14" src="/assets/logos/uksedssmall.png">
</a>
</li>
</ul>
</div>
</div>
</div>
<!-- ============================================================== -->
<!-- Container -->
<!-- ============================================================== -->
<div class="post">
<header class="post-header">
<h1 class="post-title">About</h1>
</header>
<article class="post-content">
<p>This is the base Jekyll theme. You can find out more info about customizing your Jekyll theme, as well as basic Jekyll usage documentation at <a href="http://jekyllrb.com/">jekyllrb.com</a></p>
<p>You can find the source code for the Jekyll new theme at: <a href="https://github.com/jglovier/jekyll-new">github.com/jglovier/jekyll-new</a></p>
<p>You can find the source code for Jekyll at <a href="https://github.com/jekyll/jekyll">github.com/jekyll/jekyll</a></p>
</article>
</div>
<div class="navbar navbar-default navbar-static-bottom" style="margin:0">
<div class="container">
<ul class="nav navbar-nav">
<li>
<a href="https://github.com/bristol-seds">
<span class="icon icon--github">
<svg viewBox="0 0 16 16">
<path d="M7.999,0.431c-4.285,0-7.76,3.474-7.76,7.761 c0,3.428,2.223,6.337,5.307,7.363c0.388,0.071,0.53-0.168,0.53-0.374c0-0.184-0.007-0.672-0.01-1.32 c-2.159,0.469-2.614-1.04-2.614-1.04c-0.353-0.896-0.862-1.135-0.862-1.135c-0.705-0.481,0.053-0.472,0.053-0.472 c0.779,0.055,1.189,0.8,1.189,0.8c0.692,1.186,1.816,0.843,2.258,0.645c0.071-0.502,0.271-0.843,0.493-1.037 C4.86,11.425,3.049,10.76,3.049,7.786c0-0.847,0.302-1.54,0.799-2.082C3.768,5.507,3.501,4.718,3.924,3.65 c0,0,0.652-0.209,2.134,0.796C6.677,4.273,7.34,4.187,8,4.184c0.659,0.003,1.323,0.089,1.943,0.261 c1.482-1.004,2.132-0.796,2.132-0.796c0.423,1.068,0.157,1.857,0.077,2.054c0.497,0.542,0.798,1.235,0.798,2.082 c0,2.981-1.814,3.637-3.543,3.829c0.279,0.24,0.527,0.713,0.527,1.437c0,1.037-0.01,1.874-0.01,2.129 c0,0.208,0.14,0.449,0.534,0.373c3.081-1.028,5.302-3.935,5.302-7.362C15.76,3.906,12.285,0.431,7.999,0.431z"/>-->
</svg>
</span>
<span class="username">bristol-seds</span>
</a>
</li>
<li>
<a href="https://www.flickr.com/photos/bristol-seds">
<span class="icon icon--flickr">
<svg viewBox="0 0 16 16">
<path d="M3.630,4.8C1.637,4.8 0,6.378 0,8.370 0,10.363 1.637,12 3.630,12 5.622,12 7.2,10.363 7.2,8.370 7.2,6.378 5.622,4.8 3.630,4.8 z"/>
<path d="M12.370,4.8C10.378,4.8 8.8,6.378 8.8,8.370 8.8,10.363 10.378,12 12.370,12 14.363,12 16,10.363 16,8.370 16,6.378 14.362,4.8 12.370,4.8 z"/>
</svg>
</span>
<span class="username">bristolseds</span>
</a>
</li>
<li>
<a href="https://www.facebook.com/groups/bristolseds/">
<span class="icon icon--facebook">
<svg viewBox="0 0 16 16">
<path d="M0.883,0C0.395,0 0,0.395 0,0.883l0,14.235c0,0.488 0.395,0.883 0.883,0.883l7.663,0 0,-6.197-2.086,0 0,-2.415 2.086,0 0,-1.779c0,-2.067 1.263,-3.193 3.107,-3.193 0.883,0 1.641,0.0656 1.862,0.0951l0,2.161 -1.279,0c-1.003,0-1.197,0.477-1.197,1.176l0,1.540 2.392,0-0.312,2.415-2.0798,0 0,6.197 4.078,0c0.488,0 0.883,-0.395 0.8827,-0.883l0,-14.235c0,-0.488-0.395,-0.883-0.883,-0.883l-14.235,0z"/>
</svg>
</span>
<span class="username">Bristol SEDS</span>
</a>
</li>
</ul>
<ul class="nav navbar-nav navbar-right">
<li>
<a href="https://www.ubu.org.uk/activities/societies/9490/">Proud to be part of<img height="24" style="margin-left: 4px" src="/assets/logos/bristol-su.png"></a>
</li>
</ul>
</div>
</div>
<!-- ============================================================== -->
<!-- Scripts -->
<!-- ============================================================== -->
<!-- jQuery from CDN, if that fails use the local copy -->
<script src="//ajax.googleapis.com/ajax/libs/jquery/1.11.1/jquery.min.js"></script>
<script>window.jQuery || document.write('<script src="/lib/jquery/jquery-1.11.1.min.js"><\/script>')</script>
<!-- jQuery plugins -->
<script src="/lib/jquery/plugins.js"></script>
<!-- Bootstrap -->
<script src="/lib/bootstrap/js/bootstrap.min.js"></script>
<!-- Google Analytics: change UA-XXXXX-X to be your site's ID. -->
<script>
(function(i,s,o,g,r,a,m){i['GoogleAnalyticsObject']=r;i[r]=i[r]||function(){
(i[r].q=i[r].q||[]).push(arguments)},i[r].l=1*new Date();a=s.createElement(o),
m=s.getElementsByTagName(o)[0];a.async=1;a.src=g;m.parentNode.insertBefore(a,m)
})(window,document,'script','//www.google-analytics.com/analytics.js','ga');
ga('create', 'UA-55296093-1', 'auto');
ga('send', 'pageview');
</script>
<!-- Google Maps -->
<!-- nvd3 Graphs -->
</body>
</html>

Plik binarny nie jest wyświetlany.

Po

Szerokość:  |  Wysokość:  |  Rozmiar: 20 KiB

Plik binarny nie jest wyświetlany.

Po

Szerokość:  |  Wysokość:  |  Rozmiar: 22 KiB

Plik binarny nie jest wyświetlany.

Po

Szerokość:  |  Wysokość:  |  Rozmiar: 29 KiB

Plik binarny nie jest wyświetlany.

Po

Szerokość:  |  Wysokość:  |  Rozmiar: 32 KiB

Plik binarny nie jest wyświetlany.

Po

Szerokość:  |  Wysokość:  |  Rozmiar: 43 KiB

Plik binarny nie jest wyświetlany.

Po

Szerokość:  |  Wysokość:  |  Rozmiar: 6.5 KiB

Plik binarny nie jest wyświetlany.

Po

Szerokość:  |  Wysokość:  |  Rozmiar: 7.0 KiB

Plik binarny nie jest wyświetlany.

Po

Szerokość:  |  Wysokość:  |  Rozmiar: 9.4 KiB

Plik binarny nie jest wyświetlany.

Po

Szerokość:  |  Wysokość:  |  Rozmiar: 10 KiB

Plik binarny nie jest wyświetlany.

Po

Szerokość:  |  Wysokość:  |  Rozmiar: 43 KiB

Plik binarny nie jest wyświetlany.

Po

Szerokość:  |  Wysokość:  |  Rozmiar: 43 KiB

Plik binarny nie jest wyświetlany.

Po

Szerokość:  |  Wysokość:  |  Rozmiar: 149 KiB

Plik binarny nie jest wyświetlany.

Po

Szerokość:  |  Wysokość:  |  Rozmiar: 200 KiB

Plik binarny nie jest wyświetlany.

Po

Szerokość:  |  Wysokość:  |  Rozmiar: 177 KiB

Plik binarny nie jest wyświetlany.

Po

Szerokość:  |  Wysokość:  |  Rozmiar: 207 KiB

Plik binarny nie jest wyświetlany.

Po

Szerokość:  |  Wysokość:  |  Rozmiar: 380 KiB

Plik binarny nie jest wyświetlany.

Po

Szerokość:  |  Wysokość:  |  Rozmiar: 25 KiB

Plik binarny nie jest wyświetlany.

Po

Szerokość:  |  Wysokość:  |  Rozmiar: 15 KiB

Plik binarny nie jest wyświetlany.

Po

Szerokość:  |  Wysokość:  |  Rozmiar: 93 KiB

Wyświetl plik

@ -0,0 +1,48 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<!-- Generator: Adobe Illustrator 16.0.0, SVG Export Plug-In . SVG Version: 6.00 Build 0) -->
<svg
xmlns:dc="http://purl.org/dc/elements/1.1/"
xmlns:cc="http://creativecommons.org/ns#"
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
xmlns:svg="http://www.w3.org/2000/svg"
xmlns="http://www.w3.org/2000/svg"
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
version="1.1"
id="Layer_1"
x="0px"
y="0px"
width="16"
height="16"
viewBox="0 0 16 16.000001"
enable-background="new 0 0 266.893 266.895"
xml:space="preserve"
inkscape:version="0.48.4 r9939"
sodipodi:docname="F_icon.svg"><metadata
id="metadata9"><rdf:RDF><cc:Work
rdf:about=""><dc:format>image/svg+xml</dc:format><dc:type
rdf:resource="http://purl.org/dc/dcmitype/StillImage" /></cc:Work></rdf:RDF></metadata><defs
id="defs7" /><sodipodi:namedview
pagecolor="#ffffff"
bordercolor="#666666"
borderopacity="1"
objecttolerance="10"
gridtolerance="10"
guidetolerance="10"
inkscape:pageopacity="0"
inkscape:pageshadow="2"
inkscape:window-width="1920"
inkscape:window-height="1053"
id="namedview5"
showgrid="false"
inkscape:zoom="40.016266"
inkscape:cx="9.8569113"
inkscape:cy="10.017536"
inkscape:window-x="0"
inkscape:window-y="0"
inkscape:window-maximized="1"
inkscape:current-layer="Layer_1" /><path
d="M 0.88273709,6.5861579e-7 C 0.39494953,6.5861579e-7 -8.1786701e-6,0.39496066 -8.1786701e-6,0.88274066 l 0,14.23451034 c 0,0.48767 0.3948956186701,0.88275 0.8827452686701,0.88275 l 7.66339311,0 0,-6.1966803 -2.085607,0 0,-2.41542 2.085607,0 0,-1.77907 c 0,-2.06656 1.2625392,-3.19341 3.1060998,-3.19341 0.883071,0 1.641355,0.0656 1.862495,0.0951 l 0,2.16127 -1.278525,0 c -1.00252,0 -1.197042,0.47658 -1.197042,1.1757 l 0,1.54044 2.392143,0 -0.312356,2.41542 -2.079787,0 0,6.1966803 4.078089,0 c 0.487602,0 0.882745,-0.39502 0.882745,-0.88275 l 0,-14.23451034 c 0,-0.48778 -0.395081,-0.882740001384 -0.882745,-0.882740001384 l -14.23450991,0 z"
id="Blue_1_"
inkscape:connector-curvature="0" /></svg>

Po

Szerokość:  |  Wysokość:  |  Rozmiar: 2.2 KiB

Plik binarny nie jest wyświetlany.

Po

Szerokość:  |  Wysokość:  |  Rozmiar: 308 KiB

Plik binarny nie jest wyświetlany.

Wyświetl plik

@ -0,0 +1,59 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<svg
xmlns:dc="http://purl.org/dc/elements/1.1/"
xmlns:cc="http://creativecommons.org/ns#"
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
xmlns:svg="http://www.w3.org/2000/svg"
xmlns="http://www.w3.org/2000/svg"
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
height="16"
width="16"
id="svg2"
version="1.1"
inkscape:version="0.48.4 r9939"
sodipodi:docname="flickr.svg">
<metadata
id="metadata10">
<rdf:RDF>
<cc:Work
rdf:about="">
<dc:format>image/svg+xml</dc:format>
<dc:type
rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
</cc:Work>
</rdf:RDF>
</metadata>
<defs
id="defs8" />
<sodipodi:namedview
pagecolor="#ffffff"
bordercolor="#666666"
borderopacity="1"
objecttolerance="10"
gridtolerance="10"
guidetolerance="10"
inkscape:pageopacity="0"
inkscape:pageshadow="2"
inkscape:window-width="1920"
inkscape:window-height="1053"
id="namedview6"
showgrid="false"
inkscape:zoom="21.360282"
inkscape:cx="-1.7768569"
inkscape:cy="12.30043"
inkscape:window-x="0"
inkscape:window-y="0"
inkscape:window-maximized="1"
inkscape:current-layer="svg2" />
<path
style="fill:#000000;fill-opacity:1;stroke:none"
d="M 3.6297521,4.8 C 1.6374458,4.8 0,6.3779416 0,8.3702479 0,10.362554 1.6374458,12 3.6297521,12 5.6220584,12 7.2,10.362554 7.2,8.3702479 7.2,6.3779416 5.6220584,4.8 3.6297521,4.8 z"
id="path2987"
inkscape:connector-curvature="0" />
<path
style="fill:#000000;fill-opacity:1;stroke:none"
d="M 12.370248,4.8 C 10.377941,4.8 8.8,6.3779416 8.8,8.3702479 8.8,10.362554 10.377941,12 12.370248,12 14.362555,12 16,10.362554 16,8.3702479 16,6.3779416 14.362555,4.8 12.370248,4.8 z"
id="path2987-8"
inkscape:connector-curvature="0" />
</svg>

Po

Szerokość:  |  Wysokość:  |  Rozmiar: 2.0 KiB

Wyświetl plik

@ -0,0 +1,65 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<!-- Created with Inkscape (http://www.inkscape.org/) -->
<svg
xmlns:dc="http://purl.org/dc/elements/1.1/"
xmlns:cc="http://creativecommons.org/ns#"
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
xmlns:svg="http://www.w3.org/2000/svg"
xmlns="http://www.w3.org/2000/svg"
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
width="16"
height="16"
id="svg3070"
version="1.1"
inkscape:version="0.48.4 r9939"
sodipodi:docname="LinkedIn_Logo.svg">
<defs
id="defs3072" />
<sodipodi:namedview
id="base"
pagecolor="#ffffff"
bordercolor="#666666"
borderopacity="1.0"
inkscape:pageopacity="0.0"
inkscape:pageshadow="2"
inkscape:zoom="44.8"
inkscape:cx="12.51141"
inkscape:cy="7.4929811"
inkscape:document-units="px"
inkscape:current-layer="layer1"
showgrid="false"
fit-margin-top="0"
fit-margin-left="0"
fit-margin-right="0"
fit-margin-bottom="0"
inkscape:window-width="1920"
inkscape:window-height="1053"
inkscape:window-x="0"
inkscape:window-y="0"
inkscape:window-maximized="1" />
<metadata
id="metadata3075">
<rdf:RDF>
<cc:Work
rdf:about="">
<dc:format>image/svg+xml</dc:format>
<dc:type
rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
<dc:title />
</cc:Work>
</rdf:RDF>
</metadata>
<g
inkscape:label="Layer 1"
inkscape:groupmode="layer"
id="layer1"
transform="translate(-200.55198,-457.42227)">
<path
style="fill:#006699;fill-opacity:1;fill-rule:nonzero;stroke:none"
d="M 1.1875 0 C 0.53435 0 0 0.52344 0 1.15625 L 0 14.84375 C 0 15.47678 0.53435 16 1.1875 16 L 14.8125 16 C 15.46565 16 16 15.47678 16 14.84375 L 16 1.15625 C 16 0.52344 15.46565 0 14.8125 0 L 1.1875 0 z M 3.59375 2.6875 C 4.42069 2.6875 4.92178 3.22858 4.9375 3.9375 C 4.9375 4.6308 4.40543 5.1875 3.5625 5.1875 C 2.75131 5.1875 2.21875 4.6308 2.21875 3.9375 C 2.21875 3.22858 2.76689 2.6875 3.59375 2.6875 z M 10.71875 6 C 12.30909 6 13.5 7.0309 13.5 9.25 L 13.5 13.40625 L 11.0625 13.40625 L 11.0625 9.53125 C 11.0625 8.56002 10.71843 7.90625 9.84375 7.90625 C 9.176 7.90625 8.76849 8.34983 8.59375 8.78125 C 8.52985 8.9356 8.53125 9.12782 8.53125 9.34375 L 8.53125 13.40625 L 6.125 13.40625 C 6.125 13.40625 6.1567 6.83417 6.125 6.15625 L 8.53125 6.15625 L 8.53125 7.1875 C 8.85169 6.69491 9.43104 6 10.71875 6 z M 2.34375 6.15625 L 4.78125 6.15625 L 4.78125 13.40625 L 2.34375 13.40625 L 2.34375 6.15625 z "
transform="translate(200.55198,457.42227)"
id="path14" />
</g>
</svg>

Po

Szerokość:  |  Wysokość:  |  Rozmiar: 2.7 KiB

Plik binarny nie jest wyświetlany.

Po

Szerokość:  |  Wysokość:  |  Rozmiar: 72 KiB

Plik binarny nie jest wyświetlany.

Po

Szerokość:  |  Wysokość:  |  Rozmiar: 29 KiB

Plik binarny nie jest wyświetlany.

Po

Szerokość:  |  Wysokość:  |  Rozmiar: 8.8 KiB

Plik binarny nie jest wyświetlany.

Po

Szerokość:  |  Wysokość:  |  Rozmiar: 6.6 KiB

Plik binarny nie jest wyświetlany.

Po

Szerokość:  |  Wysokość:  |  Rozmiar: 284 KiB

Plik binarny nie jest wyświetlany.

Po

Szerokość:  |  Wysokość:  |  Rozmiar: 14 KiB

Plik binarny nie jest wyświetlany.

Po

Szerokość:  |  Wysokość:  |  Rozmiar: 156 KiB

Plik binarny nie jest wyświetlany.

Po

Szerokość:  |  Wysokość:  |  Rozmiar: 225 KiB

Plik binarny nie jest wyświetlany.

Po

Szerokość:  |  Wysokość:  |  Rozmiar: 302 KiB

Plik binarny nie jest wyświetlany.

Po

Szerokość:  |  Wysokość:  |  Rozmiar: 29 KiB

Plik binarny nie jest wyświetlany.

Po

Szerokość:  |  Wysokość:  |  Rozmiar: 39 KiB

Plik binarny nie jest wyświetlany.

Po

Szerokość:  |  Wysokość:  |  Rozmiar: 32 KiB

Plik binarny nie jest wyświetlany.

Po

Szerokość:  |  Wysokość:  |  Rozmiar: 23 KiB

Plik binarny nie jest wyświetlany.

Po

Szerokość:  |  Wysokość:  |  Rozmiar: 24 KiB

Plik binarny nie jest wyświetlany.

Po

Szerokość:  |  Wysokość:  |  Rozmiar: 11 KiB

Plik binarny nie jest wyświetlany.

Po

Szerokość:  |  Wysokość:  |  Rozmiar: 15 KiB

Plik binarny nie jest wyświetlany.

Po

Szerokość:  |  Wysokość:  |  Rozmiar: 41 KiB

Plik binarny nie jest wyświetlany.

Po

Szerokość:  |  Wysokość:  |  Rozmiar: 62 KiB

Plik binarny nie jest wyświetlany.

Po

Szerokość:  |  Wysokość:  |  Rozmiar: 18 KiB

Plik binarny nie jest wyświetlany.

Po

Szerokość:  |  Wysokość:  |  Rozmiar: 47 KiB

Plik binarny nie jest wyświetlany.

Po

Szerokość:  |  Wysokość:  |  Rozmiar: 36 KiB

Plik binarny nie jest wyświetlany.

Po

Szerokość:  |  Wysokość:  |  Rozmiar: 22 KiB

Plik binarny nie jest wyświetlany.

Po

Szerokość:  |  Wysokość:  |  Rozmiar: 16 KiB

Plik binarny nie jest wyświetlany.

Po

Szerokość:  |  Wysokość:  |  Rozmiar: 550 KiB

Plik binarny nie jest wyświetlany.

Po

Szerokość:  |  Wysokość:  |  Rozmiar: 408 KiB

Plik binarny nie jest wyświetlany.

Po

Szerokość:  |  Wysokość:  |  Rozmiar: 443 KiB

Plik binarny nie jest wyświetlany.

Po

Szerokość:  |  Wysokość:  |  Rozmiar: 495 KiB

Plik binarny nie jest wyświetlany.

Po

Szerokość:  |  Wysokość:  |  Rozmiar: 545 KiB

Plik binarny nie jest wyświetlany.

Po

Szerokość:  |  Wysokość:  |  Rozmiar: 463 KiB

Plik binarny nie jest wyświetlany.

Po

Szerokość:  |  Wysokość:  |  Rozmiar: 586 KiB

Plik binarny nie jest wyświetlany.

Po

Szerokość:  |  Wysokość:  |  Rozmiar: 298 KiB

Wyświetl plik

@ -0,0 +1,479 @@
10:31:38,52.08505,-2.13590,33
10:31:53,52.08502,-2.13592,28
10:32:07,52.08501,-2.13591,26
10:32:23,52.08502,-2.13589,26
10:32:39,52.08502,-2.13592,28
10:32:54,52.08504,-2.13590,27
10:33:09,52.08502,-2.13598,37
10:33:24,52.08498,-2.13602,40
10:33:39,52.08498,-2.13614,48
10:33:54,52.08498,-2.13605,35
10:34:09,52.08502,-2.13617,48
10:34:24,52.08500,-2.13603,47
10:34:39,52.08498,-2.13598,36
10:34:54,52.08505,-2.13605,48
10:35:09,52.08488,-2.13547,70
10:35:24,52.08438,-2.13640,144
10:35:39,52.08477,-2.13556,314
10:35:54,52.08450,-2.13543,393
10:36:09,52.08379,-2.13538,449
10:36:24,52.08348,-2.13562,534
10:36:39,52.08311,-2.13576,638
10:36:54,52.08260,-2.13580,695
10:37:09,52.08224,-2.13555,771
10:37:24,52.08135,-2.13545,849
10:37:39,52.08057,-2.13569,912
10:37:54,52.07942,-2.13624,973
10:38:09,52.07848,-2.13695,1035
10:38:21,52.07815,-2.13709,1102
10:38:39,52.07675,-2.13833,1142
10:38:54,52.07606,-2.13930,1204
10:39:09,52.07473,-2.13977,1262
10:39:24,52.07341,-2.13999,1323
10:39:39,52.07262,-2.14034,1396
10:39:54,52.07153,-2.13976,1459
10:40:09,52.07040,-2.13997,1529
10:40:24,52.06951,-2.14083,1591
10:40:39,52.06880,-2.14081,1645
10:40:54,52.06761,-2.14110,1713
10:41:09,52.06653,-2.14239,1779
10:41:24,52.06570,-2.14273,1839
10:41:39,52.06447,-2.14369,1911
10:41:52,52.06363,-2.14418,1976
10:42:09,52.06222,-2.14526,2058
10:42:24,52.06096,-2.14563,2126
10:42:39,52.05978,-2.14661,2196
10:42:54,52.05873,-2.14721,2260
10:43:09,52.05773,-2.14784,2334
10:43:24,52.05638,-2.14846,2418
10:43:39,52.05494,-2.14884,2472
10:43:54,52.05381,-2.14926,2550
10:44:09,52.05303,-2.14990,2608
10:44:24,52.05208,-2.14995,2664
10:44:39,52.05081,-2.15089,2730
10:44:54,52.05019,-2.15146,2793
10:45:09,52.04919,-2.15186,2869
10:45:24,52.04821,-2.15242,2929
10:45:39,52.04750,-2.15348,3003
10:45:54,52.04673,-2.15355,3056
10:46:08,52.04557,-2.15399,3113
10:46:24,52.04477,-2.15471,3180
10:46:39,52.04362,-2.15596,3266
10:46:54,52.04272,-2.15710,3339
10:47:09,52.04161,-2.15734,3408
10:47:24,52.04006,-2.15795,3468
10:47:39,52.03870,-2.15840,3527
10:47:54,52.03730,-2.15889,3604
10:48:09,52.03571,-2.15885,3675
10:48:24,52.03424,-2.15969,3741
10:48:39,52.03297,-2.16029,3816
10:48:54,52.03127,-2.16108,3857
10:49:09,52.02968,-2.16166,3930
10:49:24,52.02827,-2.16242,3995
10:49:39,52.02696,-2.16263,4052
10:49:54,52.02531,-2.16247,4119
10:50:09,52.02402,-2.16296,4198
10:50:24,52.02235,-2.16325,4275
10:50:39,52.02081,-2.16400,4341
10:50:54,52.01937,-2.16412,4394
10:51:09,52.01774,-2.16457,4461
10:51:24,52.01596,-2.16567,4533
10:51:39,52.01414,-2.16608,4586
10:51:54,52.01243,-2.16619,4647
10:52:09,52.01103,-2.16686,4718
10:52:24,52.00938,-2.16746,4796
10:52:39,52.00763,-2.16841,4870
10:52:54,52.00578,-2.16928,4956
10:53:09,52.00370,-2.16986,4995
10:53:24,52.00161,-2.17079,5078
10:53:39,51.99957,-2.17165,5160
10:53:54,51.99754,-2.17279,5241
10:54:09,51.99531,-2.17297,5324
10:54:24,51.99322,-2.17411,5379
10:54:39,51.99105,-2.17442,5452
10:54:54,51.98916,-2.17510,5520
10:55:09,51.98695,-2.17577,5601
10:55:24,51.98463,-2.17630,5678
10:55:39,51.98245,-2.17695,5748
10:55:53,51.98026,-2.17780,5817
10:56:09,51.97770,-2.17862,5900
10:56:24,51.97561,-2.17906,5969
10:56:39,51.97338,-2.17950,6030
10:56:54,51.97106,-2.17981,6116
10:57:09,51.96904,-2.18014,6195
10:57:24,51.96669,-2.18018,6279
10:57:39,51.96444,-2.18025,6367
10:57:54,51.96234,-2.18033,6431
10:58:09,51.96012,-2.18121,6500
10:58:24,51.95774,-2.18201,6590
10:58:39,51.95501,-2.18279,6672
10:58:54,51.95246,-2.18360,6726
10:59:09,51.94998,-2.18423,6805
10:59:24,51.94739,-2.18488,6861
10:59:39,51.94487,-2.18594,6919
10:59:54,51.94230,-2.18694,6973
11:00:09,51.93972,-2.18804,7043
11:00:24,51.93716,-2.18941,7116
11:00:39,51.93466,-2.19054,7175
11:00:54,51.93199,-2.19165,7244
11:01:09,51.92913,-2.19267,7317
11:01:24,51.92626,-2.19389,7380
11:01:39,51.92335,-2.19505,7445
11:01:54,51.92037,-2.19635,7516
11:02:09,51.91749,-2.19753,7591
11:02:24,51.91455,-2.19896,7659
11:02:39,51.91156,-2.19985,7723
11:02:54,51.90843,-2.20056,7798
11:03:07,51.90540,-2.20124,7857
11:03:24,51.90153,-2.20225,7923
11:03:39,51.89847,-2.20324,8003
11:03:54,51.89484,-2.20383,8070
11:04:09,51.89121,-2.20451,8142
11:04:24,51.88751,-2.20550,8212
11:04:39,51.88349,-2.20695,8298
11:04:54,51.87885,-2.20780,8372
11:05:09,51.87479,-2.20842,8434
11:05:24,51.87055,-2.20879,8497
11:05:39,51.86651,-2.20934,8553
11:05:54,51.86245,-2.21032,8629
11:06:09,51.85795,-2.21109,8706
11:06:24,51.85316,-2.21272,8781
11:06:39,51.84808,-2.21371,8868
11:06:54,51.84342,-2.21459,8951
11:07:09,51.83837,-2.21566,9012
11:07:24,51.83321,-2.21687,9072
11:07:39,51.82820,-2.21816,9133
11:07:54,51.82303,-2.21942,9201
11:08:09,51.81782,-2.22100,9250
11:08:24,51.81261,-2.22259,9308
11:08:39,51.80734,-2.22417,9369
11:08:54,51.80198,-2.22574,9414
11:09:09,51.79663,-2.22735,9486
11:09:23,51.79156,-2.22886,9544
11:09:39,51.78584,-2.23053,9600
11:09:54,51.78033,-2.23189,9665
11:10:09,51.77488,-2.23315,9725
11:10:24,51.76939,-2.23457,9788
11:10:39,51.76383,-2.23604,9855
11:10:54,51.75844,-2.23751,9912
11:11:09,51.75300,-2.23899,9991
11:11:24,51.74785,-2.24048,10043
11:11:39,51.74232,-2.24177,10112
11:11:54,51.73687,-2.24302,10176
11:12:09,51.73140,-2.24405,10266
11:12:24,51.72596,-2.24489,10329
11:12:39,51.72035,-2.24564,10388
11:12:54,51.71487,-2.24636,10461
11:13:09,51.70927,-2.24692,10515
11:13:24,51.70371,-2.24741,10574
11:13:39,51.69812,-2.24787,10645
11:13:54,51.69246,-2.24865,10697
11:14:09,51.68677,-2.24887,10768
11:14:24,51.68098,-2.24923,10840
11:14:39,51.67526,-2.24959,10900
11:14:54,51.66959,-2.24991,10971
11:15:09,51.66388,-2.25035,11016
11:15:24,51.65811,-2.25083,11082
11:15:39,51.65246,-2.25140,11149
11:15:54,51.64676,-2.25190,11214
11:16:09,51.64104,-2.25238,11280
11:16:24,51.63547,-2.25282,11345
11:16:39,51.62974,-2.25299,11402
11:16:54,51.62419,-2.25297,11474
11:17:09,51.61861,-2.25276,11533
11:17:24,51.61306,-2.25231,11602
11:17:39,51.60740,-2.25178,11668
11:17:54,51.60177,-2.25097,11729
11:18:09,51.59632,-2.25119,11809
11:18:24,51.59098,-2.25133,11906
11:18:37,51.58678,-2.25152,11975
11:18:54,51.58132,-2.25183,12051
11:19:09,51.57670,-2.25171,12107
11:19:24,51.57213,-2.25113,12181
11:19:39,51.56756,-2.25028,12241
11:19:54,51.56308,-2.24993,12320
11:20:09,51.55863,-2.24978,12391
11:20:24,51.55467,-2.25060,12467
11:20:39,51.55147,-2.25113,12572
11:20:54,51.54848,-2.25173,12642
11:21:09,51.54526,-2.25224,12699
11:21:24,51.54219,-2.25276,12768
11:21:39,51.53911,-2.25277,12835
11:21:54,51.53617,-2.25251,12890
11:22:09,51.53304,-2.25203,12944
11:22:24,51.52980,-2.25210,13013
11:22:39,51.52658,-2.25224,13070
11:22:54,51.52343,-2.25285,13142
11:23:09,51.52038,-2.25307,13222
11:23:23,51.51766,-2.25341,13280
11:23:39,51.51483,-2.25430,13345
11:23:54,51.51227,-2.25491,13413
11:24:09,51.50984,-2.25546,13479
11:24:24,51.50768,-2.25615,13543
11:24:39,51.50551,-2.25671,13623
11:24:54,51.50342,-2.25714,13683
11:25:09,51.50137,-2.25717,13758
11:25:24,51.49931,-2.25717,13821
11:25:39,51.49718,-2.25698,13884
11:25:54,51.49515,-2.25709,13959
11:26:09,51.49303,-2.25736,14032
11:26:24,51.49112,-2.25746,14088
11:26:39,51.48908,-2.25766,14150
11:26:54,51.48724,-2.25772,14220
11:27:09,51.48538,-2.25786,14282
11:27:23,51.48352,-2.25810,14343
11:27:39,51.48156,-2.25866,14407
11:27:54,51.47967,-2.25897,14475
11:28:09,51.47778,-2.25957,14538
11:28:24,51.47615,-2.26020,14622
11:28:39,51.47447,-2.26086,14688
11:28:54,51.47278,-2.26133,14759
11:29:09,51.47113,-2.26165,14830
11:29:24,51.46936,-2.26184,14888
11:29:39,51.46772,-2.26226,14969
11:29:54,51.46603,-2.26230,15034
11:30:09,51.46419,-2.26266,15115
11:30:24,51.46246,-2.26324,15179
11:30:39,51.46076,-2.26395,15245
11:30:54,51.45933,-2.26444,15304
11:31:09,51.45760,-2.26484,15378
11:31:24,51.45641,-2.26544,15452
11:31:38,51.45520,-2.26627,15521
11:31:48,51.45446,-2.26631,15567
11:32:08,51.45267,-2.26641,15650
11:32:24,51.45125,-2.26630,15712
11:32:32,51.45056,-2.26617,15728
11:32:54,51.44819,-2.26646,15827
11:33:09,51.44692,-2.26724,15914
11:33:24,51.44548,-2.26813,15995
11:33:39,51.44404,-2.26871,16061
11:33:54,51.44245,-2.26957,16136
11:34:09,51.44087,-2.27044,16197
11:34:24,51.43963,-2.27135,16254
11:34:39,51.43838,-2.27181,16314
11:34:54,51.43730,-2.27245,16387
11:35:09,51.43610,-2.27307,16467
11:35:24,51.43495,-2.27384,16521
11:35:39,51.43371,-2.27429,16588
11:35:52,51.43260,-2.27486,16656
11:36:09,51.43114,-2.27572,16736
11:36:24,51.43009,-2.27681,16801
11:36:39,51.42918,-2.27776,16878
11:36:54,51.42800,-2.27868,16958
11:37:09,51.42681,-2.27975,17056
11:37:24,51.42572,-2.28051,17124
11:37:39,51.42497,-2.28154,17196
11:37:54,51.42414,-2.28254,17254
11:38:09,51.42326,-2.28352,17333
11:38:24,51.42239,-2.28446,17415
11:38:39,51.42167,-2.28477,17491
11:38:54,51.42090,-2.28497,17556
11:39:09,51.41997,-2.28528,17625
11:39:24,51.41881,-2.28583,17685
11:39:39,51.41746,-2.28660,17762
11:39:54,51.41608,-2.28742,17833
11:40:09,51.41497,-2.28838,17916
11:40:24,51.41389,-2.28865,17970
11:40:39,51.41284,-2.28883,18040
11:40:54,51.41149,-2.28950,18126
11:41:09,51.41016,-2.28988,18175
11:41:24,51.40888,-2.29101,18243
11:41:39,51.40771,-2.29232,18322
11:41:54,51.40658,-2.29367,18406
11:42:09,51.40570,-2.29463,18475
11:42:24,51.40502,-2.29530,18545
11:42:39,51.40439,-2.29605,18623
11:42:54,51.40364,-2.29678,18696
11:43:09,51.40292,-2.29713,18749
11:43:24,51.40185,-2.29845,18831
11:43:39,51.40071,-2.29940,18918
11:43:54,51.39994,-2.30029,18990
11:44:09,51.39920,-2.30148,19082
11:44:24,51.39870,-2.30272,19182
11:44:39,51.39808,-2.30402,19262
11:44:54,51.39749,-2.30521,19326
11:45:09,51.39687,-2.30682,19390
11:45:24,51.39624,-2.30817,19459
11:45:38,51.39575,-2.30931,19529
11:45:54,51.39527,-2.31122,19606
11:46:09,51.39517,-2.31261,19686
11:46:24,51.39495,-2.31348,19759
11:46:39,51.39462,-2.31387,19827
11:46:54,51.39366,-2.31484,19910
11:47:09,51.39292,-2.31617,19992
11:47:24,51.39233,-2.31810,20061
11:47:39,51.39216,-2.31990,20134
11:47:54,51.39185,-2.32146,20209
11:48:09,51.39168,-2.32314,20297
11:48:24,51.39148,-2.32440,20363
11:48:39,51.39121,-2.32547,20445
11:48:54,51.39068,-2.32657,20522
11:49:09,51.39015,-2.32778,20602
11:49:24,51.38977,-2.32841,20672
11:49:39,51.38924,-2.32921,20761
11:49:54,51.38860,-2.33018,20840
11:50:09,51.38815,-2.33078,20911
11:50:24,51.38732,-2.33158,20990
11:50:39,51.38663,-2.33287,21070
11:50:54,51.38568,-2.33352,21150
11:51:09,51.38476,-2.33455,21231
11:51:24,51.38407,-2.33614,21303
11:51:39,51.38402,-2.33816,21371
11:51:54,51.38421,-2.33968,21449
11:52:09,51.38442,-2.34130,21524
11:52:24,51.38490,-2.34257,21605
11:52:39,51.38516,-2.34300,21675
11:52:54,51.38504,-2.34367,21764
11:53:09,51.38455,-2.34476,21839
11:53:24,51.38385,-2.34578,21913
11:53:39,51.38306,-2.34752,21999
11:53:54,51.38277,-2.34904,22078
11:54:09,51.38267,-2.35083,22147
11:54:24,51.38221,-2.35230,22231
11:54:39,51.38179,-2.35416,22312
11:54:54,51.38146,-2.35588,22393
11:55:09,51.38120,-2.35753,22472
11:55:24,51.38078,-2.35904,22554
11:55:39,51.38059,-2.36045,22640
11:55:54,51.38004,-2.36202,22709
11:56:09,51.37945,-2.36317,22803
11:56:24,51.37873,-2.36436,22880
11:56:39,51.37800,-2.36546,22965
11:56:54,51.37737,-2.36696,23030
11:57:09,51.37687,-2.36874,23123
11:57:24,51.37644,-2.37096,23207
11:57:39,51.37614,-2.37282,23288
11:57:54,51.37588,-2.37457,23362
11:58:09,51.37578,-2.37649,23442
11:58:24,51.37570,-2.37865,23530
11:58:39,51.37537,-2.38102,23632
11:58:54,51.37517,-2.38283,23703
11:59:09,51.37479,-2.38477,23784
11:59:24,51.37465,-2.38662,23867
11:59:39,51.37441,-2.38793,23941
11:59:54,51.37439,-2.39004,24029
12:00:09,51.37445,-2.39215,24110
12:00:24,51.37481,-2.39370,24184
12:00:39,51.37527,-2.39528,24267
12:00:54,51.37592,-2.39701,24345
12:01:09,51.37648,-2.39837,24424
12:01:24,51.37691,-2.39995,24502
12:01:39,51.37709,-2.40105,24584
12:01:54,51.37713,-2.40246,24675
12:02:09,51.37726,-2.40405,24752
12:02:24,51.37738,-2.40490,24831
12:02:39,51.37757,-2.40552,24924
12:02:54,51.37753,-2.40637,25014
12:03:09,51.37724,-2.40724,25108
12:03:24,51.37717,-2.40836,25191
12:03:39,51.37685,-2.40968,25260
12:03:54,51.37625,-2.41086,25363
12:04:09,51.37535,-2.41259,25448
12:04:24,51.37461,-2.41537,25535
12:04:39,51.37414,-2.41845,25613
12:04:54,51.37422,-2.42176,25689
12:05:09,51.37405,-2.42452,25780
12:05:24,51.37416,-2.42722,25870
12:05:39,51.37454,-2.42947,25940
12:05:54,51.37459,-2.43175,26030
12:06:09,51.37467,-2.43417,26113
12:06:24,51.37471,-2.43678,26209
12:06:39,51.37450,-2.44000,26309
12:06:54,51.37492,-2.44271,26390
12:07:09,51.37508,-2.44504,26486
12:07:24,51.37545,-2.44752,26569
12:07:39,51.37556,-2.44998,26638
12:07:54,51.37582,-2.45254,26731
12:08:09,51.37594,-2.45453,26819
12:08:24,51.37619,-2.45639,26924
12:08:39,51.37645,-2.45807,27017
12:08:54,51.37686,-2.45993,27098
12:09:09,51.37738,-2.46146,27176
12:09:24,51.37760,-2.46331,27259
12:09:39,51.37793,-2.46492,27347
12:09:54,51.37781,-2.46671,27425
12:10:09,51.37795,-2.46884,27518
12:10:24,51.37833,-2.47117,27602
12:10:39,51.37854,-2.47294,27690
12:10:54,51.37766,-2.47510,27806
12:11:09,51.37796,-2.47722,27890
12:11:24,51.37719,-2.47938,28037
12:11:39,51.37641,-2.48111,28172
12:11:52,51.37626,-2.48312,28238
12:12:09,51.37527,-2.48562,28348
12:12:24,51.37479,-2.48864,28437
12:12:38,51.37438,-2.49166,28505
12:12:54,51.37375,-2.49511,28618
12:13:09,51.37325,-2.49805,28679
12:13:23,51.37343,-2.50110,28767
12:13:39,51.37388,-2.50482,28846
12:13:54,51.37391,-2.50745,28930
12:14:09,51.37423,-2.51043,29028
12:14:24,51.37422,-2.51365,29106
12:14:39,51.37376,-2.51657,29234
12:14:52,51.37416,-2.51948,29326
12:15:09,51.37444,-2.52312,29409
12:15:24,51.37512,-2.52653,29480
12:15:39,51.37549,-2.52912,29581
12:15:54,51.37605,-2.53191,29655
12:16:09,51.37616,-2.53422,29760
12:16:23,51.37645,-2.53557,29839
12:16:39,51.37667,-2.53756,29916
12:16:53,51.37685,-2.53963,30009
12:17:03,51.37651,-2.54119,30117
12:17:24,51.37680,-2.54660,30169
12:17:39,51.37755,-2.54952,30248
12:17:54,51.37751,-2.55131,30354
12:18:09,51.37861,-2.55386,30425
12:18:23,51.37927,-2.55643,30505
12:18:39,51.37915,-2.55789,30596
12:18:54,51.37943,-2.55975,30730
12:19:09,51.37959,-2.56126,30790
12:19:24,51.37978,-2.56191,30956
12:19:39,51.38032,-2.56298,31090
12:19:53,51.38039,-2.56445,31172
12:20:07,51.38031,-2.56640,31252
12:20:24,51.38012,-2.56865,31315
12:20:39,51.38008,-2.57073,31410
12:20:54,51.38006,-2.57242,31522
12:21:09,51.37992,-2.57472,31625
12:21:24,51.37976,-2.57672,31719
12:21:31,51.37953,-2.57752,31784
12:21:54,51.37955,-2.58051,30885
12:22:09,51.37992,-2.58247,30209
12:22:24,51.37984,-2.58441,29620
12:22:39,51.38019,-2.58809,28974
12:22:54,51.38019,-2.59066,28382
12:23:24,51.38008,-2.59481,27291
12:23:39,51.38043,-2.59730,26737
12:24:09,51.38101,-2.60170,25707
12:25:24,51.38252,-2.61133,22925
12:26:09,51.38132,-2.61551,21498
12:26:24,51.38088,-2.61710,21055
12:28:09,51.37725,-2.62412,18432
12:28:24,51.37612,-2.62516,18116
12:28:39,51.37475,-2.62560,17784
12:28:54,51.37353,-2.62594,17479
12:29:09,51.37269,-2.62661,17180
12:29:39,51.37099,-2.62816,16618
12:29:54,51.36994,-2.62878,16341
12:30:09,51.36880,-2.62957,16071
12:30:39,51.36595,-2.63036,15525
12:30:54,51.36459,-2.63077,15261
12:31:24,51.36112,-2.63145,14758
12:37:39,51.26005,-2.64138,9816
12:37:54,51.25487,-2.64273,9651
12:39:24,51.22505,-2.65164,8678
12:40:24,51.20798,-2.65811,8052
12:40:39,51.20385,-2.65932,7894
12:40:54,51.19989,-2.66072,7738
12:41:24,51.19279,-2.66305,7440
12:41:39,51.19016,-2.66445,7299
12:42:39,51.17985,-2.66969,6725
12:43:09,51.17504,-2.67171,6472
12:43:54,51.16771,-2.67374,6062
12:45:39,51.15328,-2.67942,5159
12:56:02,51.09997,-2.71742,775
12:57:04,51.09773,-2.72109,481
12:57:26,51.09708,-2.72167,376
12:57:47,51.09622,-2.72175,270
1 10:31:38 52.08505 -2.13590 33
2 10:31:53 52.08502 -2.13592 28
3 10:32:07 52.08501 -2.13591 26
4 10:32:23 52.08502 -2.13589 26
5 10:32:39 52.08502 -2.13592 28
6 10:32:54 52.08504 -2.13590 27
7 10:33:09 52.08502 -2.13598 37
8 10:33:24 52.08498 -2.13602 40
9 10:33:39 52.08498 -2.13614 48
10 10:33:54 52.08498 -2.13605 35
11 10:34:09 52.08502 -2.13617 48
12 10:34:24 52.08500 -2.13603 47
13 10:34:39 52.08498 -2.13598 36
14 10:34:54 52.08505 -2.13605 48
15 10:35:09 52.08488 -2.13547 70
16 10:35:24 52.08438 -2.13640 144
17 10:35:39 52.08477 -2.13556 314
18 10:35:54 52.08450 -2.13543 393
19 10:36:09 52.08379 -2.13538 449
20 10:36:24 52.08348 -2.13562 534
21 10:36:39 52.08311 -2.13576 638
22 10:36:54 52.08260 -2.13580 695
23 10:37:09 52.08224 -2.13555 771
24 10:37:24 52.08135 -2.13545 849
25 10:37:39 52.08057 -2.13569 912
26 10:37:54 52.07942 -2.13624 973
27 10:38:09 52.07848 -2.13695 1035
28 10:38:21 52.07815 -2.13709 1102
29 10:38:39 52.07675 -2.13833 1142
30 10:38:54 52.07606 -2.13930 1204
31 10:39:09 52.07473 -2.13977 1262
32 10:39:24 52.07341 -2.13999 1323
33 10:39:39 52.07262 -2.14034 1396
34 10:39:54 52.07153 -2.13976 1459
35 10:40:09 52.07040 -2.13997 1529
36 10:40:24 52.06951 -2.14083 1591
37 10:40:39 52.06880 -2.14081 1645
38 10:40:54 52.06761 -2.14110 1713
39 10:41:09 52.06653 -2.14239 1779
40 10:41:24 52.06570 -2.14273 1839
41 10:41:39 52.06447 -2.14369 1911
42 10:41:52 52.06363 -2.14418 1976
43 10:42:09 52.06222 -2.14526 2058
44 10:42:24 52.06096 -2.14563 2126
45 10:42:39 52.05978 -2.14661 2196
46 10:42:54 52.05873 -2.14721 2260
47 10:43:09 52.05773 -2.14784 2334
48 10:43:24 52.05638 -2.14846 2418
49 10:43:39 52.05494 -2.14884 2472
50 10:43:54 52.05381 -2.14926 2550
51 10:44:09 52.05303 -2.14990 2608
52 10:44:24 52.05208 -2.14995 2664
53 10:44:39 52.05081 -2.15089 2730
54 10:44:54 52.05019 -2.15146 2793
55 10:45:09 52.04919 -2.15186 2869
56 10:45:24 52.04821 -2.15242 2929
57 10:45:39 52.04750 -2.15348 3003
58 10:45:54 52.04673 -2.15355 3056
59 10:46:08 52.04557 -2.15399 3113
60 10:46:24 52.04477 -2.15471 3180
61 10:46:39 52.04362 -2.15596 3266
62 10:46:54 52.04272 -2.15710 3339
63 10:47:09 52.04161 -2.15734 3408
64 10:47:24 52.04006 -2.15795 3468
65 10:47:39 52.03870 -2.15840 3527
66 10:47:54 52.03730 -2.15889 3604
67 10:48:09 52.03571 -2.15885 3675
68 10:48:24 52.03424 -2.15969 3741
69 10:48:39 52.03297 -2.16029 3816
70 10:48:54 52.03127 -2.16108 3857
71 10:49:09 52.02968 -2.16166 3930
72 10:49:24 52.02827 -2.16242 3995
73 10:49:39 52.02696 -2.16263 4052
74 10:49:54 52.02531 -2.16247 4119
75 10:50:09 52.02402 -2.16296 4198
76 10:50:24 52.02235 -2.16325 4275
77 10:50:39 52.02081 -2.16400 4341
78 10:50:54 52.01937 -2.16412 4394
79 10:51:09 52.01774 -2.16457 4461
80 10:51:24 52.01596 -2.16567 4533
81 10:51:39 52.01414 -2.16608 4586
82 10:51:54 52.01243 -2.16619 4647
83 10:52:09 52.01103 -2.16686 4718
84 10:52:24 52.00938 -2.16746 4796
85 10:52:39 52.00763 -2.16841 4870
86 10:52:54 52.00578 -2.16928 4956
87 10:53:09 52.00370 -2.16986 4995
88 10:53:24 52.00161 -2.17079 5078
89 10:53:39 51.99957 -2.17165 5160
90 10:53:54 51.99754 -2.17279 5241
91 10:54:09 51.99531 -2.17297 5324
92 10:54:24 51.99322 -2.17411 5379
93 10:54:39 51.99105 -2.17442 5452
94 10:54:54 51.98916 -2.17510 5520
95 10:55:09 51.98695 -2.17577 5601
96 10:55:24 51.98463 -2.17630 5678
97 10:55:39 51.98245 -2.17695 5748
98 10:55:53 51.98026 -2.17780 5817
99 10:56:09 51.97770 -2.17862 5900
100 10:56:24 51.97561 -2.17906 5969
101 10:56:39 51.97338 -2.17950 6030
102 10:56:54 51.97106 -2.17981 6116
103 10:57:09 51.96904 -2.18014 6195
104 10:57:24 51.96669 -2.18018 6279
105 10:57:39 51.96444 -2.18025 6367
106 10:57:54 51.96234 -2.18033 6431
107 10:58:09 51.96012 -2.18121 6500
108 10:58:24 51.95774 -2.18201 6590
109 10:58:39 51.95501 -2.18279 6672
110 10:58:54 51.95246 -2.18360 6726
111 10:59:09 51.94998 -2.18423 6805
112 10:59:24 51.94739 -2.18488 6861
113 10:59:39 51.94487 -2.18594 6919
114 10:59:54 51.94230 -2.18694 6973
115 11:00:09 51.93972 -2.18804 7043
116 11:00:24 51.93716 -2.18941 7116
117 11:00:39 51.93466 -2.19054 7175
118 11:00:54 51.93199 -2.19165 7244
119 11:01:09 51.92913 -2.19267 7317
120 11:01:24 51.92626 -2.19389 7380
121 11:01:39 51.92335 -2.19505 7445
122 11:01:54 51.92037 -2.19635 7516
123 11:02:09 51.91749 -2.19753 7591
124 11:02:24 51.91455 -2.19896 7659
125 11:02:39 51.91156 -2.19985 7723
126 11:02:54 51.90843 -2.20056 7798
127 11:03:07 51.90540 -2.20124 7857
128 11:03:24 51.90153 -2.20225 7923
129 11:03:39 51.89847 -2.20324 8003
130 11:03:54 51.89484 -2.20383 8070
131 11:04:09 51.89121 -2.20451 8142
132 11:04:24 51.88751 -2.20550 8212
133 11:04:39 51.88349 -2.20695 8298
134 11:04:54 51.87885 -2.20780 8372
135 11:05:09 51.87479 -2.20842 8434
136 11:05:24 51.87055 -2.20879 8497
137 11:05:39 51.86651 -2.20934 8553
138 11:05:54 51.86245 -2.21032 8629
139 11:06:09 51.85795 -2.21109 8706
140 11:06:24 51.85316 -2.21272 8781
141 11:06:39 51.84808 -2.21371 8868
142 11:06:54 51.84342 -2.21459 8951
143 11:07:09 51.83837 -2.21566 9012
144 11:07:24 51.83321 -2.21687 9072
145 11:07:39 51.82820 -2.21816 9133
146 11:07:54 51.82303 -2.21942 9201
147 11:08:09 51.81782 -2.22100 9250
148 11:08:24 51.81261 -2.22259 9308
149 11:08:39 51.80734 -2.22417 9369
150 11:08:54 51.80198 -2.22574 9414
151 11:09:09 51.79663 -2.22735 9486
152 11:09:23 51.79156 -2.22886 9544
153 11:09:39 51.78584 -2.23053 9600
154 11:09:54 51.78033 -2.23189 9665
155 11:10:09 51.77488 -2.23315 9725
156 11:10:24 51.76939 -2.23457 9788
157 11:10:39 51.76383 -2.23604 9855
158 11:10:54 51.75844 -2.23751 9912
159 11:11:09 51.75300 -2.23899 9991
160 11:11:24 51.74785 -2.24048 10043
161 11:11:39 51.74232 -2.24177 10112
162 11:11:54 51.73687 -2.24302 10176
163 11:12:09 51.73140 -2.24405 10266
164 11:12:24 51.72596 -2.24489 10329
165 11:12:39 51.72035 -2.24564 10388
166 11:12:54 51.71487 -2.24636 10461
167 11:13:09 51.70927 -2.24692 10515
168 11:13:24 51.70371 -2.24741 10574
169 11:13:39 51.69812 -2.24787 10645
170 11:13:54 51.69246 -2.24865 10697
171 11:14:09 51.68677 -2.24887 10768
172 11:14:24 51.68098 -2.24923 10840
173 11:14:39 51.67526 -2.24959 10900
174 11:14:54 51.66959 -2.24991 10971
175 11:15:09 51.66388 -2.25035 11016
176 11:15:24 51.65811 -2.25083 11082
177 11:15:39 51.65246 -2.25140 11149
178 11:15:54 51.64676 -2.25190 11214
179 11:16:09 51.64104 -2.25238 11280
180 11:16:24 51.63547 -2.25282 11345
181 11:16:39 51.62974 -2.25299 11402
182 11:16:54 51.62419 -2.25297 11474
183 11:17:09 51.61861 -2.25276 11533
184 11:17:24 51.61306 -2.25231 11602
185 11:17:39 51.60740 -2.25178 11668
186 11:17:54 51.60177 -2.25097 11729
187 11:18:09 51.59632 -2.25119 11809
188 11:18:24 51.59098 -2.25133 11906
189 11:18:37 51.58678 -2.25152 11975
190 11:18:54 51.58132 -2.25183 12051
191 11:19:09 51.57670 -2.25171 12107
192 11:19:24 51.57213 -2.25113 12181
193 11:19:39 51.56756 -2.25028 12241
194 11:19:54 51.56308 -2.24993 12320
195 11:20:09 51.55863 -2.24978 12391
196 11:20:24 51.55467 -2.25060 12467
197 11:20:39 51.55147 -2.25113 12572
198 11:20:54 51.54848 -2.25173 12642
199 11:21:09 51.54526 -2.25224 12699
200 11:21:24 51.54219 -2.25276 12768
201 11:21:39 51.53911 -2.25277 12835
202 11:21:54 51.53617 -2.25251 12890
203 11:22:09 51.53304 -2.25203 12944
204 11:22:24 51.52980 -2.25210 13013
205 11:22:39 51.52658 -2.25224 13070
206 11:22:54 51.52343 -2.25285 13142
207 11:23:09 51.52038 -2.25307 13222
208 11:23:23 51.51766 -2.25341 13280
209 11:23:39 51.51483 -2.25430 13345
210 11:23:54 51.51227 -2.25491 13413
211 11:24:09 51.50984 -2.25546 13479
212 11:24:24 51.50768 -2.25615 13543
213 11:24:39 51.50551 -2.25671 13623
214 11:24:54 51.50342 -2.25714 13683
215 11:25:09 51.50137 -2.25717 13758
216 11:25:24 51.49931 -2.25717 13821
217 11:25:39 51.49718 -2.25698 13884
218 11:25:54 51.49515 -2.25709 13959
219 11:26:09 51.49303 -2.25736 14032
220 11:26:24 51.49112 -2.25746 14088
221 11:26:39 51.48908 -2.25766 14150
222 11:26:54 51.48724 -2.25772 14220
223 11:27:09 51.48538 -2.25786 14282
224 11:27:23 51.48352 -2.25810 14343
225 11:27:39 51.48156 -2.25866 14407
226 11:27:54 51.47967 -2.25897 14475
227 11:28:09 51.47778 -2.25957 14538
228 11:28:24 51.47615 -2.26020 14622
229 11:28:39 51.47447 -2.26086 14688
230 11:28:54 51.47278 -2.26133 14759
231 11:29:09 51.47113 -2.26165 14830
232 11:29:24 51.46936 -2.26184 14888
233 11:29:39 51.46772 -2.26226 14969
234 11:29:54 51.46603 -2.26230 15034
235 11:30:09 51.46419 -2.26266 15115
236 11:30:24 51.46246 -2.26324 15179
237 11:30:39 51.46076 -2.26395 15245
238 11:30:54 51.45933 -2.26444 15304
239 11:31:09 51.45760 -2.26484 15378
240 11:31:24 51.45641 -2.26544 15452
241 11:31:38 51.45520 -2.26627 15521
242 11:31:48 51.45446 -2.26631 15567
243 11:32:08 51.45267 -2.26641 15650
244 11:32:24 51.45125 -2.26630 15712
245 11:32:32 51.45056 -2.26617 15728
246 11:32:54 51.44819 -2.26646 15827
247 11:33:09 51.44692 -2.26724 15914
248 11:33:24 51.44548 -2.26813 15995
249 11:33:39 51.44404 -2.26871 16061
250 11:33:54 51.44245 -2.26957 16136
251 11:34:09 51.44087 -2.27044 16197
252 11:34:24 51.43963 -2.27135 16254
253 11:34:39 51.43838 -2.27181 16314
254 11:34:54 51.43730 -2.27245 16387
255 11:35:09 51.43610 -2.27307 16467
256 11:35:24 51.43495 -2.27384 16521
257 11:35:39 51.43371 -2.27429 16588
258 11:35:52 51.43260 -2.27486 16656
259 11:36:09 51.43114 -2.27572 16736
260 11:36:24 51.43009 -2.27681 16801
261 11:36:39 51.42918 -2.27776 16878
262 11:36:54 51.42800 -2.27868 16958
263 11:37:09 51.42681 -2.27975 17056
264 11:37:24 51.42572 -2.28051 17124
265 11:37:39 51.42497 -2.28154 17196
266 11:37:54 51.42414 -2.28254 17254
267 11:38:09 51.42326 -2.28352 17333
268 11:38:24 51.42239 -2.28446 17415
269 11:38:39 51.42167 -2.28477 17491
270 11:38:54 51.42090 -2.28497 17556
271 11:39:09 51.41997 -2.28528 17625
272 11:39:24 51.41881 -2.28583 17685
273 11:39:39 51.41746 -2.28660 17762
274 11:39:54 51.41608 -2.28742 17833
275 11:40:09 51.41497 -2.28838 17916
276 11:40:24 51.41389 -2.28865 17970
277 11:40:39 51.41284 -2.28883 18040
278 11:40:54 51.41149 -2.28950 18126
279 11:41:09 51.41016 -2.28988 18175
280 11:41:24 51.40888 -2.29101 18243
281 11:41:39 51.40771 -2.29232 18322
282 11:41:54 51.40658 -2.29367 18406
283 11:42:09 51.40570 -2.29463 18475
284 11:42:24 51.40502 -2.29530 18545
285 11:42:39 51.40439 -2.29605 18623
286 11:42:54 51.40364 -2.29678 18696
287 11:43:09 51.40292 -2.29713 18749
288 11:43:24 51.40185 -2.29845 18831
289 11:43:39 51.40071 -2.29940 18918
290 11:43:54 51.39994 -2.30029 18990
291 11:44:09 51.39920 -2.30148 19082
292 11:44:24 51.39870 -2.30272 19182
293 11:44:39 51.39808 -2.30402 19262
294 11:44:54 51.39749 -2.30521 19326
295 11:45:09 51.39687 -2.30682 19390
296 11:45:24 51.39624 -2.30817 19459
297 11:45:38 51.39575 -2.30931 19529
298 11:45:54 51.39527 -2.31122 19606
299 11:46:09 51.39517 -2.31261 19686
300 11:46:24 51.39495 -2.31348 19759
301 11:46:39 51.39462 -2.31387 19827
302 11:46:54 51.39366 -2.31484 19910
303 11:47:09 51.39292 -2.31617 19992
304 11:47:24 51.39233 -2.31810 20061
305 11:47:39 51.39216 -2.31990 20134
306 11:47:54 51.39185 -2.32146 20209
307 11:48:09 51.39168 -2.32314 20297
308 11:48:24 51.39148 -2.32440 20363
309 11:48:39 51.39121 -2.32547 20445
310 11:48:54 51.39068 -2.32657 20522
311 11:49:09 51.39015 -2.32778 20602
312 11:49:24 51.38977 -2.32841 20672
313 11:49:39 51.38924 -2.32921 20761
314 11:49:54 51.38860 -2.33018 20840
315 11:50:09 51.38815 -2.33078 20911
316 11:50:24 51.38732 -2.33158 20990
317 11:50:39 51.38663 -2.33287 21070
318 11:50:54 51.38568 -2.33352 21150
319 11:51:09 51.38476 -2.33455 21231
320 11:51:24 51.38407 -2.33614 21303
321 11:51:39 51.38402 -2.33816 21371
322 11:51:54 51.38421 -2.33968 21449
323 11:52:09 51.38442 -2.34130 21524
324 11:52:24 51.38490 -2.34257 21605
325 11:52:39 51.38516 -2.34300 21675
326 11:52:54 51.38504 -2.34367 21764
327 11:53:09 51.38455 -2.34476 21839
328 11:53:24 51.38385 -2.34578 21913
329 11:53:39 51.38306 -2.34752 21999
330 11:53:54 51.38277 -2.34904 22078
331 11:54:09 51.38267 -2.35083 22147
332 11:54:24 51.38221 -2.35230 22231
333 11:54:39 51.38179 -2.35416 22312
334 11:54:54 51.38146 -2.35588 22393
335 11:55:09 51.38120 -2.35753 22472
336 11:55:24 51.38078 -2.35904 22554
337 11:55:39 51.38059 -2.36045 22640
338 11:55:54 51.38004 -2.36202 22709
339 11:56:09 51.37945 -2.36317 22803
340 11:56:24 51.37873 -2.36436 22880
341 11:56:39 51.37800 -2.36546 22965
342 11:56:54 51.37737 -2.36696 23030
343 11:57:09 51.37687 -2.36874 23123
344 11:57:24 51.37644 -2.37096 23207
345 11:57:39 51.37614 -2.37282 23288
346 11:57:54 51.37588 -2.37457 23362
347 11:58:09 51.37578 -2.37649 23442
348 11:58:24 51.37570 -2.37865 23530
349 11:58:39 51.37537 -2.38102 23632
350 11:58:54 51.37517 -2.38283 23703
351 11:59:09 51.37479 -2.38477 23784
352 11:59:24 51.37465 -2.38662 23867
353 11:59:39 51.37441 -2.38793 23941
354 11:59:54 51.37439 -2.39004 24029
355 12:00:09 51.37445 -2.39215 24110
356 12:00:24 51.37481 -2.39370 24184
357 12:00:39 51.37527 -2.39528 24267
358 12:00:54 51.37592 -2.39701 24345
359 12:01:09 51.37648 -2.39837 24424
360 12:01:24 51.37691 -2.39995 24502
361 12:01:39 51.37709 -2.40105 24584
362 12:01:54 51.37713 -2.40246 24675
363 12:02:09 51.37726 -2.40405 24752
364 12:02:24 51.37738 -2.40490 24831
365 12:02:39 51.37757 -2.40552 24924
366 12:02:54 51.37753 -2.40637 25014
367 12:03:09 51.37724 -2.40724 25108
368 12:03:24 51.37717 -2.40836 25191
369 12:03:39 51.37685 -2.40968 25260
370 12:03:54 51.37625 -2.41086 25363
371 12:04:09 51.37535 -2.41259 25448
372 12:04:24 51.37461 -2.41537 25535
373 12:04:39 51.37414 -2.41845 25613
374 12:04:54 51.37422 -2.42176 25689
375 12:05:09 51.37405 -2.42452 25780
376 12:05:24 51.37416 -2.42722 25870
377 12:05:39 51.37454 -2.42947 25940
378 12:05:54 51.37459 -2.43175 26030
379 12:06:09 51.37467 -2.43417 26113
380 12:06:24 51.37471 -2.43678 26209
381 12:06:39 51.37450 -2.44000 26309
382 12:06:54 51.37492 -2.44271 26390
383 12:07:09 51.37508 -2.44504 26486
384 12:07:24 51.37545 -2.44752 26569
385 12:07:39 51.37556 -2.44998 26638
386 12:07:54 51.37582 -2.45254 26731
387 12:08:09 51.37594 -2.45453 26819
388 12:08:24 51.37619 -2.45639 26924
389 12:08:39 51.37645 -2.45807 27017
390 12:08:54 51.37686 -2.45993 27098
391 12:09:09 51.37738 -2.46146 27176
392 12:09:24 51.37760 -2.46331 27259
393 12:09:39 51.37793 -2.46492 27347
394 12:09:54 51.37781 -2.46671 27425
395 12:10:09 51.37795 -2.46884 27518
396 12:10:24 51.37833 -2.47117 27602
397 12:10:39 51.37854 -2.47294 27690
398 12:10:54 51.37766 -2.47510 27806
399 12:11:09 51.37796 -2.47722 27890
400 12:11:24 51.37719 -2.47938 28037
401 12:11:39 51.37641 -2.48111 28172
402 12:11:52 51.37626 -2.48312 28238
403 12:12:09 51.37527 -2.48562 28348
404 12:12:24 51.37479 -2.48864 28437
405 12:12:38 51.37438 -2.49166 28505
406 12:12:54 51.37375 -2.49511 28618
407 12:13:09 51.37325 -2.49805 28679
408 12:13:23 51.37343 -2.50110 28767
409 12:13:39 51.37388 -2.50482 28846
410 12:13:54 51.37391 -2.50745 28930
411 12:14:09 51.37423 -2.51043 29028
412 12:14:24 51.37422 -2.51365 29106
413 12:14:39 51.37376 -2.51657 29234
414 12:14:52 51.37416 -2.51948 29326
415 12:15:09 51.37444 -2.52312 29409
416 12:15:24 51.37512 -2.52653 29480
417 12:15:39 51.37549 -2.52912 29581
418 12:15:54 51.37605 -2.53191 29655
419 12:16:09 51.37616 -2.53422 29760
420 12:16:23 51.37645 -2.53557 29839
421 12:16:39 51.37667 -2.53756 29916
422 12:16:53 51.37685 -2.53963 30009
423 12:17:03 51.37651 -2.54119 30117
424 12:17:24 51.37680 -2.54660 30169
425 12:17:39 51.37755 -2.54952 30248
426 12:17:54 51.37751 -2.55131 30354
427 12:18:09 51.37861 -2.55386 30425
428 12:18:23 51.37927 -2.55643 30505
429 12:18:39 51.37915 -2.55789 30596
430 12:18:54 51.37943 -2.55975 30730
431 12:19:09 51.37959 -2.56126 30790
432 12:19:24 51.37978 -2.56191 30956
433 12:19:39 51.38032 -2.56298 31090
434 12:19:53 51.38039 -2.56445 31172
435 12:20:07 51.38031 -2.56640 31252
436 12:20:24 51.38012 -2.56865 31315
437 12:20:39 51.38008 -2.57073 31410
438 12:20:54 51.38006 -2.57242 31522
439 12:21:09 51.37992 -2.57472 31625
440 12:21:24 51.37976 -2.57672 31719
441 12:21:31 51.37953 -2.57752 31784
442 12:21:54 51.37955 -2.58051 30885
443 12:22:09 51.37992 -2.58247 30209
444 12:22:24 51.37984 -2.58441 29620
445 12:22:39 51.38019 -2.58809 28974
446 12:22:54 51.38019 -2.59066 28382
447 12:23:24 51.38008 -2.59481 27291
448 12:23:39 51.38043 -2.59730 26737
449 12:24:09 51.38101 -2.60170 25707
450 12:25:24 51.38252 -2.61133 22925
451 12:26:09 51.38132 -2.61551 21498
452 12:26:24 51.38088 -2.61710 21055
453 12:28:09 51.37725 -2.62412 18432
454 12:28:24 51.37612 -2.62516 18116
455 12:28:39 51.37475 -2.62560 17784
456 12:28:54 51.37353 -2.62594 17479
457 12:29:09 51.37269 -2.62661 17180
458 12:29:39 51.37099 -2.62816 16618
459 12:29:54 51.36994 -2.62878 16341
460 12:30:09 51.36880 -2.62957 16071
461 12:30:39 51.36595 -2.63036 15525
462 12:30:54 51.36459 -2.63077 15261
463 12:31:24 51.36112 -2.63145 14758
464 12:37:39 51.26005 -2.64138 9816
465 12:37:54 51.25487 -2.64273 9651
466 12:39:24 51.22505 -2.65164 8678
467 12:40:24 51.20798 -2.65811 8052
468 12:40:39 51.20385 -2.65932 7894
469 12:40:54 51.19989 -2.66072 7738
470 12:41:24 51.19279 -2.66305 7440
471 12:41:39 51.19016 -2.66445 7299
472 12:42:39 51.17985 -2.66969 6725
473 12:43:09 51.17504 -2.67171 6472
474 12:43:54 51.16771 -2.67374 6062
475 12:45:39 51.15328 -2.67942 5159
476 12:56:02 51.09997 -2.71742 775
477 12:57:04 51.09773 -2.72109 481
478 12:57:26 51.09708 -2.72167 376
479 12:57:47 51.09622 -2.72175 270

Wyświetl plik

@ -0,0 +1,502 @@
<?xml version="1.0" encoding="UTF-8"?>
<kml xmlns="http://www.opengis.net/kml/2.2">
<Document>
<name>UBSEDS Balloon Trajectory</name>
<description>Path showing trajectory of high-altitude balloon launch by UBSEDS society.</description>
<Style id="blueline">
<LineStyle>
<color>ffff0000</color>
<width>4</width>
</LineStyle>
</Style>
<Placemark>
<name>Blue line</name>
<styleUrl>#blueline</styleUrl>
<LineString>
<altitudeMode>relative</altitudeMode>
<coordinates> -2.13590,52.08505,33
-2.13592,52.08502,28
-2.13591,52.08501,26
-2.13589,52.08502,26
-2.13592,52.08502,28
-2.13590,52.08504,27
-2.13598,52.08502,37
-2.13602,52.08498,40
-2.13614,52.08498,48
-2.13605,52.08498,35
-2.13617,52.08502,48
-2.13603,52.08500,47
-2.13598,52.08498,36
-2.13605,52.08505,48
-2.13547,52.08488,70
-2.13640,52.08438,144
-2.13556,52.08477,314
-2.13543,52.08450,393
-2.13538,52.08379,449
-2.13562,52.08348,534
-2.13576,52.08311,638
-2.13580,52.08260,695
-2.13555,52.08224,771
-2.13545,52.08135,849
-2.13569,52.08057,912
-2.13624,52.07942,973
-2.13695,52.07848,1035
-2.13709,52.07815,1102
-2.13833,52.07675,1142
-2.13930,52.07606,1204
-2.13977,52.07473,1262
-2.13999,52.07341,1323
-2.14034,52.07262,1396
-2.13976,52.07153,1459
-2.13997,52.07040,1529
-2.14083,52.06951,1591
-2.14081,52.06880,1645
-2.14110,52.06761,1713
-2.14239,52.06653,1779
-2.14273,52.06570,1839
-2.14369,52.06447,1911
-2.14418,52.06363,1976
-2.14526,52.06222,2058
-2.14563,52.06096,2126
-2.14661,52.05978,2196
-2.14721,52.05873,2260
-2.14784,52.05773,2334
-2.14846,52.05638,2418
-2.14884,52.05494,2472
-2.14926,52.05381,2550
-2.14990,52.05303,2608
-2.14995,52.05208,2664
-2.15089,52.05081,2730
-2.15146,52.05019,2793
-2.15186,52.04919,2869
-2.15242,52.04821,2929
-2.15348,52.04750,3003
-2.15355,52.04673,3056
-2.15399,52.04557,3113
-2.15471,52.04477,3180
-2.15596,52.04362,3266
-2.15710,52.04272,3339
-2.15734,52.04161,3408
-2.15795,52.04006,3468
-2.15840,52.03870,3527
-2.15889,52.03730,3604
-2.15885,52.03571,3675
-2.15969,52.03424,3741
-2.16029,52.03297,3816
-2.16108,52.03127,3857
-2.16166,52.02968,3930
-2.16242,52.02827,3995
-2.16263,52.02696,4052
-2.16247,52.02531,4119
-2.16296,52.02402,4198
-2.16325,52.02235,4275
-2.16400,52.02081,4341
-2.16412,52.01937,4394
-2.16457,52.01774,4461
-2.16567,52.01596,4533
-2.16608,52.01414,4586
-2.16619,52.01243,4647
-2.16686,52.01103,4718
-2.16746,52.00938,4796
-2.16841,52.00763,4870
-2.16928,52.00578,4956
-2.16986,52.00370,4995
-2.17079,52.00161,5078
-2.17165,51.99957,5160
-2.17279,51.99754,5241
-2.17297,51.99531,5324
-2.17411,51.99322,5379
-2.17442,51.99105,5452
-2.17510,51.98916,5520
-2.17577,51.98695,5601
-2.17630,51.98463,5678
-2.17906,51.97561,5969
-2.17862,51.97770,5900
-2.17695,51.98245,5748
-2.17780,51.98026,5817
-2.18014,51.96904,6195
-2.17950,51.97338,6030
-2.18025,51.96444,6367
-2.17981,51.97106,6116
-2.18121,51.96012,6500
-2.18018,51.96669,6279
-2.18033,51.96234,6431
-2.18360,51.95246,6726
-2.18488,51.94739,6861
-2.18201,51.95774,6590
-2.18279,51.95501,6672
-2.18423,51.94998,6805
-2.18594,51.94487,6919
-2.19054,51.93466,7175
-2.18694,51.94230,6973
-2.18804,51.93972,7043
-2.19267,51.92913,7317
-2.18941,51.93716,7116
-2.19389,51.92626,7380
-2.19505,51.92335,7445
-2.19165,51.93199,7244
-2.19635,51.92037,7516
-2.20056,51.90843,7798
-2.19753,51.91749,7591
-2.20225,51.90153,7923
-2.19896,51.91455,7659
-2.20324,51.89847,8003
-2.19985,51.91156,7723
-2.20383,51.89484,8070
-2.20451,51.89121,8142
-2.20124,51.90540,7857
-2.20550,51.88751,8212
-2.20695,51.88349,8298
-2.20934,51.86651,8553
-2.20780,51.87885,8372
-2.21032,51.86245,8629
-2.20842,51.87479,8434
-2.21109,51.85795,8706
-2.20879,51.87055,8497
-2.21272,51.85316,8781
-2.21459,51.84342,8951
-2.21687,51.83321,9072
-2.21816,51.82820,9133
-2.21371,51.84808,8868
-2.21566,51.83837,9012
-2.22100,51.81782,9250
-2.22417,51.80734,9369
-2.21942,51.82303,9201
-2.22574,51.80198,9414
-2.22735,51.79663,9486
-2.22886,51.79156,9544
-2.22259,51.81261,9308
-2.23189,51.78033,9665
-2.23315,51.77488,9725
-2.23457,51.76939,9788
-2.23053,51.78584,9600
-2.23604,51.76383,9855
-2.23899,51.75300,9991
-2.24048,51.74785,10043
-2.24177,51.74232,10112
-2.23751,51.75844,9912
-2.24302,51.73687,10176
-2.24405,51.73140,10266
-2.24489,51.72596,10329
-2.24564,51.72035,10388
-2.24636,51.71487,10461
-2.24692,51.70927,10515
-2.24741,51.70371,10574
-2.24787,51.69812,10645
-2.24865,51.69246,10697
-2.24887,51.68677,10768
-2.24923,51.68098,10840
-2.24959,51.67526,10900
-2.24991,51.66959,10971
-2.25035,51.66388,11016
-2.25140,51.65246,11149
-2.25190,51.64676,11214
-2.25083,51.65811,11082
-2.25238,51.64104,11280
-2.25282,51.63547,11345
-2.25297,51.62419,11474
-2.25276,51.61861,11533
-2.25299,51.62974,11402
-2.25231,51.61306,11602
-2.25178,51.60740,11668
-2.25097,51.60177,11729
-2.25119,51.59632,11809
-2.25133,51.59098,11906
-2.25152,51.58678,11975
-2.25183,51.58132,12051
-2.25171,51.57670,12107
-2.25113,51.57213,12181
-2.25028,51.56756,12241
-2.24993,51.56308,12320
-2.24978,51.55863,12391
-2.25060,51.55467,12467
-2.25113,51.55147,12572
-2.25173,51.54848,12642
-2.25224,51.54526,12699
-2.25276,51.54219,12768
-2.25277,51.53911,12835
-2.25251,51.53617,12890
-2.25203,51.53304,12944
-2.25210,51.52980,13013
-2.25224,51.52658,13070
-2.25285,51.52343,13142
-2.25307,51.52038,13222
-2.25341,51.51766,13280
-2.25430,51.51483,13345
-2.25491,51.51227,13413
-2.25546,51.50984,13479
-2.25615,51.50768,13543
-2.25671,51.50551,13623
-2.25714,51.50342,13683
-2.25717,51.50137,13758
-2.25717,51.49931,13821
-2.25698,51.49718,13884
-2.25709,51.49515,13959
-2.25736,51.49303,14032
-2.25746,51.49112,14088
-2.25766,51.48908,14150
-2.25772,51.48724,14220
-2.25786,51.48538,14282
-2.25810,51.48352,14343
-2.25866,51.48156,14407
-2.25897,51.47967,14475
-2.25957,51.47778,14538
-2.26020,51.47615,14622
-2.26086,51.47447,14688
-2.26133,51.47278,14759
-2.26165,51.47113,14830
-2.26184,51.46936,14888
-2.26226,51.46772,14969
-2.26230,51.46603,15034
-2.26266,51.46419,15115
-2.26324,51.46246,15179
-2.26395,51.46076,15245
-2.26444,51.45933,15304
-2.26484,51.45760,15378
-2.26544,51.45641,15452
-2.26627,51.45520,15521
-2.26631,51.45446,15567
-2.26641,51.45267,15650
-2.26630,51.45125,15712
-2.26646,51.44819,15827
-2.26724,51.44692,15914
-2.26617,51.45056,15728
-2.26871,51.44404,16061
-2.26957,51.44245,16136
-2.26813,51.44548,15995
-2.27044,51.44087,16197
-2.27135,51.43963,16254
-2.27384,51.43495,16521
-2.27181,51.43838,16314
-2.27245,51.43730,16387
-2.27429,51.43371,16588
-2.27486,51.43260,16656
-2.27307,51.43610,16467
-2.27572,51.43114,16736
-2.27681,51.43009,16801
-2.27776,51.42918,16878
-2.27868,51.42800,16958
-2.27975,51.42681,17056
-2.28051,51.42572,17124
-2.28154,51.42497,17196
-2.28254,51.42414,17254
-2.28352,51.42326,17333
-2.28446,51.42239,17415
-2.28477,51.42167,17491
-2.28497,51.42090,17556
-2.28583,51.41881,17685
-2.28528,51.41997,17625
-2.28838,51.41497,17916
-2.28660,51.41746,17762
-2.28742,51.41608,17833
-2.28950,51.41149,18126
-2.28865,51.41389,17970
-2.29101,51.40888,18243
-2.28883,51.41284,18040
-2.29940,51.40071,18918
-2.28988,51.41016,18175
-2.29367,51.40658,18406
-2.29232,51.40771,18322
-2.29463,51.40570,18475
-2.29530,51.40502,18545
-2.29678,51.40364,18696
-2.29605,51.40439,18623
-2.29713,51.40292,18749
-2.30148,51.39920,19082
-2.29845,51.40185,18831
-2.29940,51.40071,18918
-2.30402,51.39808,19262
-2.30029,51.39994,18990
-2.30521,51.39749,19326
-2.30272,51.39870,19182
-2.30817,51.39624,19459
-2.30931,51.39575,19529
-2.30682,51.39687,19390
-2.31387,51.39462,19827
-2.31122,51.39527,19606
-2.31348,51.39495,19759
-2.31261,51.39517,19686
-2.31484,51.39366,19910
-2.31990,51.39216,20134
-2.31617,51.39292,19992
-2.31810,51.39233,20061
-2.32146,51.39185,20209
-2.32314,51.39168,20297
-2.32657,51.39068,20522
-2.32440,51.39148,20363
-2.32778,51.39015,20602
-2.32547,51.39121,20445
-2.33018,51.38860,20840
-2.32841,51.38977,20672
-2.33078,51.38815,20911
-2.32921,51.38924,20761
-2.33158,51.38732,20990
-2.33287,51.38663,21070
-2.33352,51.38568,21150
-2.33455,51.38476,21231
-2.33614,51.38407,21303
-2.33816,51.38402,21371
-2.33968,51.38421,21449
-2.34130,51.38442,21524
-2.34257,51.38490,21605
-2.34367,51.38504,21764
-2.34476,51.38455,21839
-2.34300,51.38516,21675
-2.34752,51.38306,21999
-2.34578,51.38385,21913
-2.35083,51.38267,22147
-2.35230,51.38221,22231
-2.34904,51.38277,22078
-2.35416,51.38179,22312
-2.35753,51.38120,22472
-2.35588,51.38146,22393
-2.36045,51.38059,22640
-2.36202,51.38004,22709
-2.35904,51.38078,22554
-2.36317,51.37945,22803
-2.36546,51.37800,22965
-2.36436,51.37873,22880
-2.36696,51.37737,23030
-2.36874,51.37687,23123
-2.37096,51.37644,23207
-2.37282,51.37614,23288
-2.37457,51.37588,23362
-2.37649,51.37578,23442
-2.37865,51.37570,23530
-2.38283,51.37517,23703
-2.38102,51.37537,23632
-2.38477,51.37479,23784
-2.38662,51.37465,23867
-2.38793,51.37441,23941
-2.39004,51.37439,24029
-2.39215,51.37445,24110
-2.39370,51.37481,24184
-2.39528,51.37527,24267
-2.39701,51.37592,24345
-2.39837,51.37648,24424
-2.39995,51.37691,24502
-2.40105,51.37709,24584
-2.40405,51.37726,24752
-2.40246,51.37713,24675
-2.40490,51.37738,24831
-2.40552,51.37757,24924
-2.40637,51.37753,25014
-2.40724,51.37724,25108
-2.40836,51.37717,25191
-2.40968,51.37685,25260
-2.41086,51.37625,25363
-2.41259,51.37535,25448
-2.41845,51.37414,25613
-2.42176,51.37422,25689
-2.41537,51.37461,25535
-2.42452,51.37405,25780
-2.42722,51.37416,25870
-2.42947,51.37454,25940
-2.43175,51.37459,26030
-2.43417,51.37467,26113
-2.44000,51.37450,26309
-2.44271,51.37492,26390
-2.43678,51.37471,26209
-2.44504,51.37508,26486
-2.44752,51.37545,26569
-2.45254,51.37582,26731
-2.44998,51.37556,26638
-2.45453,51.37594,26819
-2.45639,51.37619,26924
-2.45807,51.37645,27017
-2.45993,51.37686,27098
-2.46146,51.37738,27176
-2.46331,51.37760,27259
-2.46492,51.37793,27347
-2.46671,51.37781,27425
-2.46884,51.37795,27518
-2.47117,51.37833,27602
-2.47294,51.37854,27690
-2.47510,51.37766,27806
-2.47722,51.37796,27890
-2.47938,51.37719,28037
-2.48111,51.37641,28172
-2.48312,51.37626,28238
-2.48562,51.37527,28348
-2.48864,51.37479,28437
-2.49166,51.37438,28505
-2.49805,51.37325,28679
-2.49511,51.37375,28618
-2.50110,51.37343,28767
-2.49511,51.37375,28618
-2.50482,51.37388,28846
-2.50745,51.37391,28930
-2.51365,51.37422,29106
-2.51657,51.37376,29234
-2.51043,51.37423,29028
-2.51948,51.37416,29326
-2.52312,51.37444,29409
-2.52912,51.37549,29581
-2.52653,51.37512,29480
-2.53422,51.37616,29760
-2.53557,51.37645,29839
-2.53191,51.37605,29655
-2.53756,51.37667,29916
-2.53963,51.37685,30009
-2.54660,51.37680,30169
-2.54119,51.37651,30117
-2.55131,51.37751,30354
-2.54952,51.37755,30248
-2.55386,51.37861,30425
-2.55789,51.37915,30596
-2.55643,51.37927,30505
-2.55975,51.37943,30730
-2.56126,51.37959,30790
-2.56298,51.38032,31090
-2.56191,51.37978,30956
-2.58247,51.37992,30209
-2.56865,51.38012,31315
-2.56445,51.38039,31172
-2.57073,51.38008,31410
-2.56640,51.38031,31252
-2.57672,51.37976,31719
-2.58051,51.37955,30885
-2.57242,51.38006,31522
-2.57472,51.37992,31625
-2.57752,51.37953,31784
-2.59730,51.38043,26737
-2.58441,51.37984,29620
-2.61133,51.38252,22925
-2.58809,51.38019,28974
-2.59066,51.38019,28382
-2.61551,51.38132,21498
-2.59481,51.38008,27291
-2.61710,51.38088,21055
-2.60170,51.38101,25707
-2.62412,51.37725,18432
-2.62516,51.37612,18116
-2.62560,51.37475,17784
-2.62594,51.37353,17479
-2.62661,51.37269,17180
-2.62816,51.37099,16618
-2.62878,51.36994,16341
-2.62957,51.36880,16071
-2.63036,51.36595,15525
-2.63145,51.36112,14758
-2.63077,51.36459,15261
-2.64138,51.26005,9816
-2.64273,51.25487,9651
-2.65164,51.22505,8678
-2.65811,51.20798,8052
-2.65932,51.20385,7894
-2.66072,51.19989,7738
-2.66305,51.19279,7440
-2.66445,51.19016,7299
-2.66969,51.17985,6725
-2.67171,51.17504,6472
-2.67374,51.16771,6062
-2.67942,51.15328,5159
-2.71741,51.09997,775
-2.72109,51.09773,481
-2.72167,51.09708,376
-2.72175,51.09622,270
</coordinates>
</LineString>
</Placemark>
</Document>
</kml>

Plik binarny nie jest wyświetlany.

Po

Szerokość:  |  Wysokość:  |  Rozmiar: 80 KiB

Plik binarny nie jest wyświetlany.

Po

Szerokość:  |  Wysokość:  |  Rozmiar: 196 KiB

Wyświetl plik

@ -0,0 +1,536 @@
<?xml version="1.0" encoding="UTF-8"?>
<kml xmlns="http://earth.google.com/kml/2.0">
<Document>
<Style id="ept">
<PolyStyle>
<color>33ffffff</color>
</PolyStyle>
</Style>
<Folder>
<Placemark>
<name>Track Segment</name>
<styleUrl>#ept</styleUrl>
<LineString>
<extrude>1</extrude>
<tessellate>1</tessellate>
<altitudeMode>absolute</altitudeMode>
<coordinates>
-2.13590,52.08505,33
-2.13592,52.08502,28
-2.13591,52.08501,26
-2.13589,52.08502,26
-2.13592,52.08502,28
-2.13590,52.08504,27
-2.13598,52.08502,37
-2.13602,52.08498,40
-2.13614,52.08498,48
-2.13605,52.08498,35
-2.13617,52.08502,48
-2.13603,52.08500,47
-2.13598,52.08498,36
-2.13605,52.08505,48
-2.13547,52.08488,70
-2.13640,52.08438,144
-2.13556,52.08477,314
-2.13543,52.08450,393
-2.13538,52.08379,449
-2.13562,52.08348,534
-2.13576,52.08311,638
-2.13580,52.08260,695
-2.13555,52.08224,771
-2.13545,52.08135,849
-2.13569,52.08057,912
-2.13624,52.07942,973
-2.13695,52.07848,1035
-2.13709,52.07815,1102
-2.13833,52.07675,1142
-2.13930,52.07606,1204
-2.13977,52.07473,1262
-2.13999,52.07341,1323
-2.14034,52.07262,1396
-2.13976,52.07153,1459
-2.13997,52.07040,1529
-2.14083,52.06951,1591
-2.14081,52.06880,1645
-2.14110,52.06761,1713
-2.14239,52.06653,1779
-2.14273,52.06570,1839
-2.14369,52.06447,1911
-2.14418,52.06363,1976
-2.14526,52.06222,2058
-2.14563,52.06096,2126
-2.14661,52.05978,2196
-2.14721,52.05873,2260
-2.14784,52.05773,2334
-2.14846,52.05638,2418
-2.14884,52.05494,2472
-2.14926,52.05381,2550
-2.14990,52.05303,2608
-2.14995,52.05208,2664
-2.15089,52.05081,2730
-2.15146,52.05019,2793
-2.15186,52.04919,2869
-2.15242,52.04821,2929
-2.15348,52.04750,3003
-2.15355,52.04673,3056
-2.15399,52.04557,3113
-2.15471,52.04477,3180
-2.15596,52.04362,3266
-2.15710,52.04272,3339
-2.15734,52.04161,3408
-2.15795,52.04006,3468
-2.15840,52.03870,3527
-2.15889,52.03730,3604
-2.15885,52.03571,3675
-2.15969,52.03424,3741
-2.16029,52.03297,3816
-2.16108,52.03127,3857
-2.16166,52.02968,3930
-2.16242,52.02827,3995
-2.16263,52.02696,4052
-2.16247,52.02531,4119
-2.16296,52.02402,4198
-2.16325,52.02235,4275
-2.16400,52.02081,4341
-2.16412,52.01937,4394
-2.16457,52.01774,4461
-2.16567,52.01596,4533
-2.16608,52.01414,4586
-2.16619,52.01243,4647
-2.16686,52.01103,4718
-2.16746,52.00938,4796
-2.16841,52.00763,4870
-2.16928,52.00578,4956
-2.16986,52.00370,4995
-2.17079,52.00161,5078
-2.17165,51.99957,5160
-2.17279,51.99754,5241
-2.17297,51.99531,5324
-2.17411,51.99322,5379
-2.17442,51.99105,5452
-2.17510,51.98916,5520
-2.17577,51.98695,5601
-2.17630,51.98463,5678
-2.17906,51.97561,5969
-2.17862,51.97770,5900
-2.17695,51.98245,5748
-2.17780,51.98026,5817
-2.18014,51.96904,6195
-2.17950,51.97338,6030
-2.18025,51.96444,6367
-2.17981,51.97106,6116
-2.18121,51.96012,6500
-2.18018,51.96669,6279
-2.18033,51.96234,6431
-2.18360,51.95246,6726
-2.18488,51.94739,6861
-2.18201,51.95774,6590
-2.18279,51.95501,6672
-2.18423,51.94998,6805
-2.18594,51.94487,6919
-2.19054,51.93466,7175
-2.18694,51.94230,6973
-2.18804,51.93972,7043
-2.19267,51.92913,7317
-2.18941,51.93716,7116
-2.19389,51.92626,7380
-2.19505,51.92335,7445
-2.19165,51.93199,7244
-2.19635,51.92037,7516
-2.20056,51.90843,7798
-2.19753,51.91749,7591
-2.20225,51.90153,7923
-2.19896,51.91455,7659
-2.20324,51.89847,8003
-2.19985,51.91156,7723
-2.20383,51.89484,8070
-2.20451,51.89121,8142
-2.20124,51.90540,7857
-2.20550,51.88751,8212
-2.20695,51.88349,8298
-2.20934,51.86651,8553
-2.20780,51.87885,8372
-2.21032,51.86245,8629
-2.20842,51.87479,8434
-2.21109,51.85795,8706
-2.20879,51.87055,8497
-2.21272,51.85316,8781
-2.21459,51.84342,8951
-2.21687,51.83321,9072
-2.21816,51.82820,9133
-2.21371,51.84808,8868
-2.21566,51.83837,9012
-2.22100,51.81782,9250
-2.22417,51.80734,9369
-2.21942,51.82303,9201
-2.22574,51.80198,9414
-2.22735,51.79663,9486
-2.22886,51.79156,9544
-2.22259,51.81261,9308
-2.23189,51.78033,9665
-2.23315,51.77488,9725
-2.23457,51.76939,9788
-2.23053,51.78584,9600
-2.23604,51.76383,9855
-2.23899,51.75300,9991
-2.24048,51.74785,10043
-2.24177,51.74232,10112
-2.23751,51.75844,9912
-2.24302,51.73687,10176
-2.24405,51.73140,10266
-2.24489,51.72596,10329
-2.24564,51.72035,10388
-2.24636,51.71487,10461
-2.24692,51.70927,10515
-2.24741,51.70371,10574
-2.24787,51.69812,10645
-2.24865,51.69246,10697
-2.24887,51.68677,10768
-2.24923,51.68098,10840
-2.24959,51.67526,10900
-2.24991,51.66959,10971
-2.25035,51.66388,11016
-2.25140,51.65246,11149
-2.25190,51.64676,11214
-2.25083,51.65811,11082
-2.25238,51.64104,11280
-2.25282,51.63547,11345
-2.25297,51.62419,11474
-2.25276,51.61861,11533
-2.25299,51.62974,11402
-2.25231,51.61306,11602
-2.25178,51.60740,11668
-2.25097,51.60177,11729
-2.25119,51.59632,11809
-2.25133,51.59098,11906
-2.25152,51.58678,11975
-2.25183,51.58132,12051
-2.25171,51.57670,12107
-2.25113,51.57213,12181
-2.25028,51.56756,12241
-2.24993,51.56308,12320
-2.24978,51.55863,12391
-2.25060,51.55467,12467
-2.25113,51.55147,12572
-2.25173,51.54848,12642
-2.25224,51.54526,12699
-2.25276,51.54219,12768
-2.25277,51.53911,12835
-2.25251,51.53617,12890
-2.25203,51.53304,12944
-2.25210,51.52980,13013
-2.25224,51.52658,13070
-2.25285,51.52343,13142
-2.25307,51.52038,13222
-2.25341,51.51766,13280
-2.25430,51.51483,13345
-2.25491,51.51227,13413
-2.25546,51.50984,13479
-2.25615,51.50768,13543
-2.25671,51.50551,13623
-2.25714,51.50342,13683
-2.25717,51.50137,13758
-2.25717,51.49931,13821
-2.25698,51.49718,13884
-2.25709,51.49515,13959
-2.25736,51.49303,14032
-2.25746,51.49112,14088
-2.25766,51.48908,14150
-2.25772,51.48724,14220
-2.25786,51.48538,14282
-2.25810,51.48352,14343
-2.25866,51.48156,14407
-2.25897,51.47967,14475
-2.25957,51.47778,14538
-2.26020,51.47615,14622
-2.26086,51.47447,14688
-2.26133,51.47278,14759
-2.26165,51.47113,14830
-2.26184,51.46936,14888
-2.26226,51.46772,14969
-2.26230,51.46603,15034
-2.26266,51.46419,15115
-2.26324,51.46246,15179
-2.26395,51.46076,15245
-2.26444,51.45933,15304
-2.26484,51.45760,15378
-2.26544,51.45641,15452
-2.26627,51.45520,15521
-2.26631,51.45446,15567
-2.26641,51.45267,15650
-2.26630,51.45125,15712
-2.26646,51.44819,15827
-2.26724,51.44692,15914
-2.26617,51.45056,15728
-2.26871,51.44404,16061
-2.26957,51.44245,16136
-2.26813,51.44548,15995
-2.27044,51.44087,16197
-2.27135,51.43963,16254
-2.27384,51.43495,16521
-2.27181,51.43838,16314
-2.27245,51.43730,16387
-2.27429,51.43371,16588
-2.27486,51.43260,16656
-2.27307,51.43610,16467
-2.27572,51.43114,16736
-2.27681,51.43009,16801
-2.27776,51.42918,16878
-2.27868,51.42800,16958
-2.27975,51.42681,17056
-2.28051,51.42572,17124
-2.28154,51.42497,17196
-2.28254,51.42414,17254
-2.28352,51.42326,17333
-2.28446,51.42239,17415
-2.28477,51.42167,17491
-2.28497,51.42090,17556
-2.28583,51.41881,17685
-2.28528,51.41997,17625
-2.28838,51.41497,17916
-2.28660,51.41746,17762
-2.28742,51.41608,17833
-2.28950,51.41149,18126
-2.28865,51.41389,17970
-2.29101,51.40888,18243
-2.28883,51.41284,18040
-2.29940,51.40071,18918
-2.28988,51.41016,18175
-2.29367,51.40658,18406
-2.29232,51.40771,18322
-2.29463,51.40570,18475
-2.29530,51.40502,18545
-2.29678,51.40364,18696
-2.29605,51.40439,18623
-2.29713,51.40292,18749
-2.30148,51.39920,19082
-2.29845,51.40185,18831
-2.29940,51.40071,18918
-2.30402,51.39808,19262
-2.30029,51.39994,18990
-2.30521,51.39749,19326
-2.30272,51.39870,19182
-2.30817,51.39624,19459
-2.30931,51.39575,19529
-2.30682,51.39687,19390
-2.31387,51.39462,19827
-2.31122,51.39527,19606
-2.31348,51.39495,19759
-2.31261,51.39517,19686
-2.31484,51.39366,19910
-2.31990,51.39216,20134
-2.31617,51.39292,19992
-2.31810,51.39233,20061
-2.32146,51.39185,20209
-2.32314,51.39168,20297
-2.32657,51.39068,20522
-2.32440,51.39148,20363
-2.32778,51.39015,20602
-2.32547,51.39121,20445
-2.33018,51.38860,20840
-2.32841,51.38977,20672
-2.33078,51.38815,20911
-2.32921,51.38924,20761
-2.33158,51.38732,20990
-2.33287,51.38663,21070
-2.33352,51.38568,21150
-2.33455,51.38476,21231
-2.33614,51.38407,21303
-2.33816,51.38402,21371
-2.33968,51.38421,21449
-2.34130,51.38442,21524
-2.34257,51.38490,21605
-2.34367,51.38504,21764
-2.34476,51.38455,21839
-2.34300,51.38516,21675
-2.34752,51.38306,21999
-2.34578,51.38385,21913
-2.35083,51.38267,22147
-2.35230,51.38221,22231
-2.34904,51.38277,22078
-2.35416,51.38179,22312
-2.35753,51.38120,22472
-2.35588,51.38146,22393
-2.36045,51.38059,22640
-2.36202,51.38004,22709
-2.35904,51.38078,22554
-2.36317,51.37945,22803
-2.36546,51.37800,22965
-2.36436,51.37873,22880
-2.36696,51.37737,23030
-2.36874,51.37687,23123
-2.37096,51.37644,23207
-2.37282,51.37614,23288
-2.37457,51.37588,23362
-2.37649,51.37578,23442
-2.37865,51.37570,23530
-2.38283,51.37517,23703
-2.38102,51.37537,23632
-2.38477,51.37479,23784
-2.38662,51.37465,23867
-2.38793,51.37441,23941
-2.39004,51.37439,24029
-2.39215,51.37445,24110
-2.39370,51.37481,24184
-2.39528,51.37527,24267
-2.39701,51.37592,24345
-2.39837,51.37648,24424
-2.39995,51.37691,24502
-2.40105,51.37709,24584
-2.40405,51.37726,24752
-2.40246,51.37713,24675
-2.40490,51.37738,24831
-2.40552,51.37757,24924
-2.40637,51.37753,25014
-2.40724,51.37724,25108
-2.40836,51.37717,25191
-2.40968,51.37685,25260
-2.41086,51.37625,25363
-2.41259,51.37535,25448
-2.41845,51.37414,25613
-2.42176,51.37422,25689
-2.41537,51.37461,25535
-2.42452,51.37405,25780
-2.42722,51.37416,25870
-2.42947,51.37454,25940
-2.43175,51.37459,26030
-2.43417,51.37467,26113
-2.44000,51.37450,26309
-2.44271,51.37492,26390
-2.43678,51.37471,26209
-2.44504,51.37508,26486
-2.44752,51.37545,26569
-2.45254,51.37582,26731
-2.44998,51.37556,26638
-2.45453,51.37594,26819
-2.45639,51.37619,26924
-2.45807,51.37645,27017
-2.45993,51.37686,27098
-2.46146,51.37738,27176
-2.46331,51.37760,27259
-2.46492,51.37793,27347
-2.46671,51.37781,27425
-2.46884,51.37795,27518
-2.47117,51.37833,27602
-2.47294,51.37854,27690
-2.47510,51.37766,27806
-2.47722,51.37796,27890
-2.47938,51.37719,28037
-2.48111,51.37641,28172
-2.48312,51.37626,28238
-2.48562,51.37527,28348
-2.48864,51.37479,28437
-2.49166,51.37438,28505
-2.49805,51.37325,28679
-2.49511,51.37375,28618
-2.50110,51.37343,28767
-2.49511,51.37375,28618
-2.50482,51.37388,28846
-2.50745,51.37391,28930
-2.51365,51.37422,29106
-2.51657,51.37376,29234
-2.51043,51.37423,29028
-2.51948,51.37416,29326
-2.52312,51.37444,29409
-2.52912,51.37549,29581
-2.52653,51.37512,29480
-2.53422,51.37616,29760
-2.53557,51.37645,29839
-2.53191,51.37605,29655
-2.53756,51.37667,29916
-2.53963,51.37685,30009
-2.54660,51.37680,30169
-2.54119,51.37651,30117
-2.55131,51.37751,30354
-2.54952,51.37755,30248
-2.55386,51.37861,30425
-2.55789,51.37915,30596
-2.55643,51.37927,30505
-2.55975,51.37943,30730
-2.56126,51.37959,30790
-2.56298,51.38032,31090
-2.56191,51.37978,30956
-2.58247,51.37992,30209
-2.56865,51.38012,31315
-2.56445,51.38039,31172
-2.57073,51.38008,31410
-2.56640,51.38031,31252
-2.57672,51.37976,31719
-2.58051,51.37955,30885
-2.57242,51.38006,31522
-2.57472,51.37992,31625
-2.57752,51.37953,31784
-2.59730,51.38043,26737
-2.58441,51.37984,29620
-2.61133,51.38252,22925
-2.58809,51.38019,28974
-2.59066,51.38019,28382
-2.61551,51.38132,21498
-2.59481,51.38008,27291
-2.61710,51.38088,21055
-2.60170,51.38101,25707
-2.62412,51.37725,18432
-2.62516,51.37612,18116
-2.62560,51.37475,17784
-2.62594,51.37353,17479
-2.62661,51.37269,17180
-2.62816,51.37099,16618
-2.62878,51.36994,16341
-2.62957,51.36880,16071
-2.63036,51.36595,15525
-2.63145,51.36112,14758
-2.63077,51.36459,15261
-2.64138,51.26005,9816
-2.64273,51.25487,9651
-2.65164,51.22505,8678
-2.65811,51.20798,8052
-2.65932,51.20385,7894
-2.66072,51.19989,7738
-2.66305,51.19279,7440
-2.66445,51.19016,7299
-2.66969,51.17985,6725
-2.67171,51.17504,6472
-2.67374,51.16771,6062
-2.67942,51.15328,5159
-2.71741,51.09997,775
-2.72109,51.09773,481
-2.72167,51.09708,376
-2.72175,51.09622,270
</coordinates>
</LineString>
</Placemark>
<name>Flight Path</name>
</Folder>
<name>BUSEDS1 Data Export</name>
<Folder>
<name>Launch, Burst and Landing Points</name>
<Placemark>
<name>Launch</name>
<Point>
<extrude>0</extrude>
<altitudeMode>absolute</altitudeMode>
<coordinates>-2.13590,52.08505,30
</coordinates>
</Point>
</Placemark>
<Placemark>
<name>Burst</name>
<Point>
<extrude>0</extrude>
<altitudeMode>absolute</altitudeMode>
<coordinates>-2.57752,51.37953,31784
</coordinates>
</Point>
</Placemark>
<Placemark>
<name>Landing</name>
<Point>
<extrude>0</extrude>
<altitudeMode>absolute</altitudeMode>
<coordinates>-2.72175,51.09622,270
</coordinates>
</Point>
</Placemark>
</Folder>
</Document>
</kml>

Plik binarny nie jest wyświetlany.

Po

Szerokość:  |  Wysokość:  |  Rozmiar: 392 KiB

Plik binarny nie jest wyświetlany.

Po

Szerokość:  |  Wysokość:  |  Rozmiar: 651 KiB

Wyświetl plik

@ -0,0 +1,37 @@
//Dimensions of SVG window
var w = 400;
var h = 300;
// Import data
d3.text("/assets/posts/buseds1/balloon_coords.csv", function(text) {
//d3.text("http://0.0.0.0:4000/assets/posts/buseds1/balloon_coords.csv", function(text) {
var rawData = d3.csv.parseRows(text);
parsetime = d3.time.format("%H:%M:%S").parse;
var data = [];
// Convert non-date values to numbers
for (var i = 0; i < rawData.length; i++) {
data.push({"x": parsetime(rawData[i][0]), "y": Number(rawData[i][3])});
}
dataseries = [{"values": data, "key": "Altitude", "color": 'FireBrick'}];
nv.addGraph(function() {
var chart = nv.models.lineChart().margin({left: 80, right: 40});
chart.xAxis.tickFormat(function (d) {
return d3.time.format("%H:%M:%S")(new Date(d));
});
chart.xAxis.axisLabel('Time');
chart.yAxis.axisLabel('Altitude (m)');
chart.tooltips(false);
chart.showLegend(false);
d3.select("#alt-time")
.attr("width", w).attr("height", h)
.datum(dataseries).call(chart);
nv.utils.windowResize(function() { chart.update() });
return chart;
});
});

Wyświetl plik

@ -0,0 +1,37 @@
//Dimensions of SVG window
var w = 400;
var h = 300;
// Import data
d3.text("/assets/posts/buseds1/speed.csv", function(text) {
var rawData2 = d3.csv.parseRows(text);
var dataGroundSpeed = [];
var dataAltSpeed = [];
// Convert non-date values to numbers
for (var i = 0; i < rawData2.length; i++) {
dataGroundSpeed.push({"x": Number(rawData2[i][0]), "y": Number(rawData2[i][1])});
dataAltSpeed.push({"x": Number(rawData2[i][0]), "y": Number(rawData2[i][2])});
}
dataseries2 = [{"values": dataGroundSpeed, "key": "Ground speed", "color": 'steelblue' },
{"values": dataAltSpeed, "key": "Ascent Rate", "color": 'rgb(44,160,44)'}];
nv.addGraph(function() {
var chart2 = nv.models.lineChart().margin({left: 80, right: 40});
chart2.yAxis.tickFormat(d3.format('.2f'));
chart2.xAxis.tickFormat(function (d) {
return d3.time.format("%H:%M:%S")(new Date(d*1000));
});
chart2.xAxis.axisLabel('Time');
chart2.yAxis.axisLabel('Speed (m/s)');
chart2.useInteractiveGuideline(true);
d3.select("#speed-time")
.attr("width", w).attr("height", h)
.datum(dataseries2).call(chart2);
nv.utils.windowResize(function() { chart2.update() });
return chart2;
});
});

Plik binarny nie jest wyświetlany.

Po

Szerokość:  |  Wysokość:  |  Rozmiar: 550 KiB

Wyświetl plik

@ -0,0 +1,478 @@
1402824698.0,0.2698161390289616,-0.3333333333333333
1402824713.0,0.0,-0.14285714285714285
1402824727.0,0.0,0.0
1402824743.0,0.17891397465644365,0.125
1402824759.0,0.19084163260462247,-0.06666666666666667
1402824774.0,0.38163024917782123,0.6666666666666666
1402824789.0,0.3304867184147495,0.2
1402824804.0,0.5397077704736557,0.5333333333333333
1402824819.0,0.4266888318449793,-0.8666666666666667
1402824834.0,0.6328549795697324,0.8666666666666667
1402824849.0,0.6610051501880395,-0.06666666666666667
1402824864.0,0.26981672924872246,-0.7333333333333333
1402824879.0,0.6033945065521386,0.8
1402824894.0,2.9375247006374603,1.4666666666666666
1402824909.0,5.653998576569608,4.933333333333334
1402824924.0,4.815965361832741,11.333333333333334
1402824939.0,2.099024384537029,5.266666666666667
1402824954.0,5.291681157487338,3.7333333333333334
1402824969.0,2.553059140951373,5.666666666666667
1402824984.0,2.830419891821185,6.933333333333334
1402824999.0,3.8022649209852295,3.8
1402825014.0,2.912923630485493,5.066666666666666
1402825029.0,6.643660449509556,5.2
1402825044.0,5.912850589912397,4.2
1402825059.0,8.926664909057854,4.066666666666666
1402825074.0,7.719006621896848,4.133333333333334
1402825089.0,3.1737302076548715,5.583333333333333
1402825101.0,9.89356282477254,2.2222222222222223
1402825119.0,6.790440873884254,4.133333333333334
1402825134.0,10.136475091454633,3.8666666666666667
1402825149.0,9.88368152281413,4.066666666666666
1402825164.0,6.098265677817853,4.866666666666666
1402825179.0,8.541593638554362,4.2
1402825194.0,8.471021600139165,4.666666666666667
1402825209.0,7.71023376082944,4.133333333333334
1402825224.0,5.289228175948124,3.6
1402825239.0,8.96230201700948,4.533333333333333
1402825254.0,9.97973868423048,4.4
1402825269.0,6.3761190784523905,4.0
1402825284.0,10.162604378932627,4.8
1402825299.0,7.670287182303681,5.0
1402825312.0,10.244269572234614,4.823529411764706
1402825329.0,9.537897429472565,4.533333333333333
1402825344.0,9.87026130196906,4.666666666666667
1402825359.0,8.289409164227674,4.266666666666667
1402825374.0,7.98958192332991,4.933333333333334
1402825389.0,10.44973959256062,5.6
1402825404.0,10.8669397316651,3.6
1402825419.0,8.634242561873398,5.2
1402825434.0,6.50978309541749,3.8666666666666667
1402825449.0,7.080924042142966,3.7333333333333334
1402825464.0,10.396089250624557,4.4
1402825479.0,5.307363448477683,4.2
1402825494.0,7.671486257584419,5.066666666666666
1402825509.0,7.7377939512047496,4.0
1402825524.0,7.180930059880455,4.933333333333334
1402825539.0,5.746077453822959,3.533333333333333
1402825554.0,9.508273655990035,4.071428571428571
1402825568.0,6.385579189627863,4.1875
1402825584.0,10.307153961336049,5.733333333333333
1402825599.0,8.501326313411662,4.866666666666666
1402825614.0,8.343473859081998,4.6
1402825629.0,11.882688755540977,4.0
1402825644.0,10.3411542370426,3.933333333333333
1402825659.0,10.670837166708173,5.133333333333334
1402825674.0,11.84772426561707,4.733333333333333
1402825689.0,11.610113251080639,4.4
1402825704.0,9.85427364871993,5.0
1402825719.0,13.175201463372094,2.7333333333333334
1402825734.0,12.141460047090495,4.866666666666666
1402825749.0,11.06890333627732,4.333333333333333
1402825764.0,9.808315534839446,3.8
1402825779.0,12.316220879333438,4.466666666666667
1402825794.0,9.871487022332552,5.266666666666667
1402825809.0,12.514705582935484,5.133333333333334
1402825824.0,11.980540103162285,4.4
1402825839.0,10.745390876313788,3.533333333333333
1402825854.0,12.319837609038276,4.466666666666667
1402825869.0,14.19165891943232,4.8
1402825884.0,13.692326589438931,3.533333333333333
1402825899.0,12.75354545470078,4.066666666666666
1402825914.0,10.875752782348444,4.733333333333333
1402825929.0,12.599925818555976,5.2
1402825944.0,13.750023149276462,4.933333333333334
1402825959.0,14.353516071843236,5.733333333333333
1402825974.0,15.728337145832292,2.6
1402825989.0,16.149396217148436,5.533333333333333
1402826004.0,15.70659522181281,5.466666666666667
1402826019.0,16.00805992009916,5.4
1402826034.0,16.64048197751363,5.533333333333333
1402826049.0,16.431179071840578,3.6666666666666665
1402826064.0,16.23594812219626,4.866666666666666
1402826079.0,14.428310769812255,4.533333333333333
1402826094.0,16.755873930541778,5.4
1402826109.0,17.46171006879276,5.133333333333334
1402826124.0,16.519529695492448,4.666666666666667
1402826139.0,17.981325477171758,4.928571428571429
1402826153.0,18.233033491614364,5.1875
1402826169.0,15.708610938291569,4.6
1402826184.0,16.74398208369212,4.066666666666666
1402826199.0,17.35076560261136,5.733333333333333
1402826214.0,15.133145397749189,5.266666666666667
1402826229.0,17.517556404719993,5.6
1402826244.0,16.77417848811661,5.866666666666666
1402826259.0,15.658585012997147,4.266666666666667
1402826274.0,17.034628879609272,4.6
1402826289.0,18.118305017719283,6.0
1402826304.0,20.663280294159897,5.466666666666667
1402826319.0,19.3693990659014,3.6
1402826334.0,18.71231991258933,5.266666666666667
1402826349.0,19.536728555318366,3.7333333333333334
1402826364.0,19.406667559016796,3.8666666666666667
1402826379.0,19.702592274251572,3.6
1402826394.0,19.88708979452688,4.666666666666667
1402826409.0,20.09629280314109,4.866666666666666
1402826424.0,19.348123341025993,3.933333333333333
1402826439.0,20.548293783268907,4.6
1402826454.0,21.831481967943905,4.866666666666666
1402826469.0,22.119838654209158,4.2
1402826484.0,22.340847091506014,4.333333333333333
1402826499.0,23.007397735659563,4.733333333333333
1402826514.0,22.146906700115505,5.0
1402826529.0,22.884660460465607,4.533333333333333
1402826544.0,22.66536749562194,4.266666666666667
1402826559.0,23.564008727636498,5.0
1402826574.0,26.31498543069786,4.538461538461538
1402826587.0,25.787821166104386,3.8823529411764706
1402826604.0,23.265457159270724,5.333333333333333
1402826619.0,27.200947776554393,4.466666666666667
1402826634.0,27.246147872996723,4.8
1402826649.0,27.961830649362998,4.666666666666667
1402826664.0,30.70834714189334,5.733333333333333
1402826679.0,34.818287825114545,4.933333333333334
1402826694.0,30.407483170142083,4.133333333333334
1402826709.0,31.66167086042465,4.2
1402826724.0,30.231083913645985,3.7333333333333334
1402826739.0,30.60877090632851,5.066666666666666
1402826754.0,33.742376513146944,5.133333333333334
1402826769.0,36.49900444180195,5.0
1402826784.0,38.15482955550278,5.8
1402826799.0,34.98561095135969,5.533333333333333
1402826814.0,37.97984724077659,4.066666666666666
1402826829.0,38.88133971987438,4.0
1402826844.0,37.83126346165981,4.066666666666666
1402826859.0,38.98944826012194,4.533333333333333
1402826874.0,39.53021899993004,3.2666666666666666
1402826889.0,39.53883363562526,3.8666666666666667
1402826904.0,39.97088501212326,4.066666666666666
1402826919.0,40.62324408235397,3.0
1402826934.0,40.58350902240609,4.8
1402826949.0,41.193154786878985,4.142857142857143
1402826963.0,40.63952283268339,3.5
1402826979.0,41.56927447192276,4.333333333333333
1402826994.0,41.05967321899782,4.0
1402827009.0,41.46585166995736,4.2
1402827024.0,42.01875572704889,4.466666666666667
1402827039.0,40.768559151069404,3.8
1402827054.0,41.144334776703296,5.266666666666667
1402827069.0,39.02182009217675,3.466666666666667
1402827084.0,41.67305861239275,4.6
1402827099.0,41.05675484978417,4.266666666666667
1402827114.0,41.07495316615704,6.0
1402827129.0,40.76042147828356,4.2
1402827144.0,41.98708381839005,3.933333333333333
1402827159.0,41.0095635039723,4.866666666666666
1402827174.0,41.849832034184004,3.6
1402827189.0,41.533893059038775,3.933333333333333
1402827204.0,41.75007153132565,4.733333333333333
1402827219.0,42.37237541378267,3.466666666666667
1402827234.0,42.45497224544021,4.733333333333333
1402827249.0,43.22123531135205,4.8
1402827264.0,42.70002330557487,4.0
1402827279.0,42.32100491638342,4.733333333333333
1402827294.0,42.642248501994914,3.0
1402827309.0,43.098899693732044,4.4
1402827324.0,42.22930380626539,4.466666666666667
1402827339.0,42.583415837635016,4.333333333333333
1402827354.0,42.72774710900533,4.4
1402827369.0,41.60125422325749,4.333333333333333
1402827384.0,42.75255713389741,3.8
1402827399.0,41.40307581897487,4.8
1402827414.0,41.63850782097559,3.933333333333333
1402827429.0,41.45639925523427,4.6
1402827444.0,42.29627566627944,4.4
1402827459.0,42.169087738395056,4.066666666666666
1402827474.0,40.67190857510229,5.333333333333333
1402827489.0,39.84411833086487,6.466666666666667
1402827504.0,36.16912803624817,5.3076923076923075
1402827517.0,35.96517388081909,4.470588235294118
1402827534.0,34.47328132765954,3.7333333333333334
1402827549.0,34.20164439607249,4.933333333333334
1402827564.0,34.32364096472049,4.0
1402827579.0,33.46455397679755,5.266666666666667
1402827594.0,33.20896716329393,4.733333333333333
1402827609.0,29.789833642187332,5.066666666666666
1402827624.0,24.002392671736633,7.0
1402827639.0,22.482851092981367,4.666666666666667
1402827654.0,24.141985931386113,3.8
1402827669.0,23.033405513276474,4.6
1402827684.0,22.982017938199558,4.466666666666667
1402827699.0,21.9706554988986,3.6666666666666665
1402827714.0,23.461012766741632,3.6
1402827729.0,24.178679367451405,4.6
1402827744.0,24.03639731192604,3.8
1402827759.0,23.67495302908533,4.8
1402827774.0,22.782054676980763,5.333333333333333
1402827789.0,21.812845010999684,4.142857142857143
1402827803.0,20.17334038071638,4.0625
1402827819.0,19.312109558274063,4.533333333333333
1402827834.0,18.312387322681438,4.4
1402827849.0,16.434309531082853,4.266666666666667
1402827864.0,16.40106733128142,5.333333333333333
1402827879.0,15.724061912671926,4.0
1402827894.0,15.29872133598193,5.0
1402827909.0,15.37281464001292,4.2
1402827924.0,15.919833830202224,4.2
1402827939.0,15.158733841042364,5.0
1402827954.0,15.870714999871687,4.866666666666666
1402827969.0,14.261668702036417,3.7333333333333334
1402827984.0,15.253007329210549,4.133333333333334
1402827999.0,13.735535961386582,4.666666666666667
1402828014.0,13.897147835887562,4.133333333333334
1402828029.0,14.920928041080026,4.357142857142857
1402828043.0,13.929059437295157,4.0
1402828059.0,14.178918337688291,4.533333333333333
1402828074.0,14.378856830607145,4.2
1402828089.0,12.513008365124504,5.6
1402828104.0,12.908823622388626,4.4
1402828119.0,12.802263134470556,4.733333333333333
1402828134.0,12.404816811591932,4.733333333333333
1402828149.0,13.240751193785844,3.8666666666666667
1402828164.0,12.396215982418601,5.4
1402828179.0,12.615742630207837,4.333333333333333
1402828194.0,13.835601718119758,5.4
1402828209.0,13.191518065245123,4.266666666666667
1402828224.0,13.112378122598594,4.4
1402828239.0,10.915556449380201,3.933333333333333
1402828254.0,13.046905468021002,4.933333333333334
1402828269.0,9.311510547737528,4.933333333333334
1402828284.0,10.523719078787623,4.928571428571429
1402828298.0,8.29067950233089,4.6
1402828308.0,10.027595348848141,4.15
1402828328.0,9.948783766843025,3.875
1402828344.0,9.723295690431419,2.0
1402828352.0,12.098003307319145,4.5
1402828374.0,10.152425343634608,5.8
1402828389.0,11.520094436359908,5.4
1402828404.0,11.083155876788306,4.4
1402828419.0,12.526207716858266,5.0
1402828434.0,12.470727304844653,4.066666666666666
1402828449.0,10.180006790840148,3.8
1402828464.0,9.574345868802215,4.0
1402828479.0,8.595627044201589,4.866666666666666
1402828494.0,9.412645222623818,5.333333333333333
1402828509.0,9.303263347188844,3.6
1402828524.0,9.492210013363975,4.466666666666667
1402828539.0,10.040517579425472,5.230769230769231
1402828552.0,10.245534756782233,4.705882352941177
1402828569.0,9.338991366864096,4.333333333333333
1402828584.0,8.107659063448358,5.133333333333334
1402828599.0,9.7963410790021,5.333333333333333
1402828614.0,10.18660504742883,6.533333333333333
1402828629.0,8.875251533323668,4.533333333333333
1402828644.0,7.372713919528596,4.8
1402828659.0,7.750384971411079,3.8666666666666667
1402828674.0,7.9991459894606844,5.266666666666667
1402828689.0,7.832770102914961,5.466666666666667
1402828704.0,5.565049467669781,5.066666666666666
1402828719.0,5.825440591967513,4.333333333333333
1402828734.0,7.092294174966826,4.6
1402828749.0,9.033439502493714,4.0
1402828764.0,10.699563491435818,5.133333333333334
1402828779.0,10.99002047363751,4.733333333333333
1402828794.0,9.418653501180707,5.533333333333333
1402828809.0,8.163068226860641,3.6
1402828824.0,7.884791305099236,4.666666666666667
1402828839.0,10.553724721715817,5.733333333333333
1402828854.0,10.089144484977387,3.2666666666666666
1402828869.0,10.912155524973688,4.533333333333333
1402828884.0,10.657633344873876,5.266666666666667
1402828899.0,10.52465691729408,5.6
1402828914.0,7.950077763531843,4.6
1402828929.0,5.9599330120898735,4.666666666666667
1402828944.0,5.860864404477263,5.2
1402828959.0,6.554121917339461,4.866666666666666
1402828974.0,5.618550615363772,3.533333333333333
1402828989.0,10.084678366694767,5.466666666666667
1402829004.0,9.595383283732419,5.8
1402829019.0,7.091216660833825,4.8
1402829034.0,7.830115032753822,6.133333333333334
1402829049.0,6.879040912184138,6.666666666666667
1402829064.0,7.624159336702054,5.333333333333333
1402829079.0,7.08384535292609,4.266666666666667
1402829094.0,8.816290587642488,4.266666666666667
1402829109.0,7.856288839906529,4.6
1402829124.0,6.911536282614823,5.0
1402829138.0,8.996650040721322,4.8125
1402829154.0,6.521511395837799,5.333333333333333
1402829169.0,4.377121383501287,4.866666666666666
1402829184.0,3.062401739997525,4.533333333333333
1402829199.0,8.478060367010862,5.533333333333333
1402829214.0,8.30573149491038,5.466666666666667
1402829229.0,10.017382400608886,4.6
1402829244.0,8.48485086242291,4.866666666666666
1402829259.0,7.632493478906933,5.0
1402829274.0,7.933859552342172,5.866666666666666
1402829289.0,6.05916292544661,4.4
1402829304.0,5.380181746473459,5.466666666666667
1402829319.0,6.477263216769659,5.133333333333334
1402829334.0,6.891227279543478,5.333333333333333
1402829349.0,4.0832447912516905,4.666666666666667
1402829364.0,5.438022456713503,5.933333333333334
1402829379.0,6.581410675617567,5.266666666666667
1402829394.0,4.37371953127763,4.733333333333333
1402829409.0,7.236632888559165,5.266666666666667
1402829424.0,7.920957464895044,5.333333333333333
1402829439.0,7.717166028708424,5.333333333333333
1402829454.0,8.384185499369064,5.4
1402829469.0,9.030401462783239,4.8
1402829484.0,9.425691036168155,4.533333333333333
1402829499.0,7.2295510574751605,5.2
1402829514.0,7.71524577339869,5.0
1402829529.0,6.924139085926858,5.4
1402829544.0,2.794195179760531,4.666666666666667
1402829559.0,3.2491369828115286,5.933333333333334
1402829574.0,6.262819521935629,5.0
1402829589.0,7.071154738889931,4.933333333333334
1402829604.0,10.03500326716492,5.733333333333333
1402829619.0,7.413013000117406,5.266666666666667
1402829634.0,8.381022753486507,4.6
1402829649.0,7.668425433062826,5.6
1402829664.0,9.224593497195606,5.4
1402829679.0,8.392257950109958,5.4
1402829694.0,7.936558459692746,5.266666666666667
1402829709.0,7.709344728493456,5.466666666666667
1402829724.0,6.72922362444498,5.733333333333333
1402829739.0,8.397053271731012,4.6
1402829754.0,6.943923302165233,6.266666666666667
1402829769.0,7.731113902100629,5.133333333333334
1402829784.0,7.490299540578311,5.666666666666667
1402829799.0,8.434516691749618,4.333333333333333
1402829814.0,9.105713820199869,6.2
1402829829.0,10.84305673897168,5.6
1402829844.0,8.961851729189673,5.4
1402829859.0,8.391347681209565,4.933333333333334
1402829874.0,8.988627559179493,5.333333333333333
1402829889.0,10.095686303950243,5.866666666666666
1402829904.0,11.328423218490562,6.8
1402829919.0,8.575540967286173,4.733333333333333
1402829934.0,9.48738447908544,5.4
1402829949.0,8.694681772353716,5.533333333333333
1402829964.0,6.369389259129309,4.933333333333334
1402829979.0,9.84631862872324,5.866666666666666
1402829994.0,9.855761579823458,5.4
1402830009.0,7.716065439785704,4.933333333333334
1402830024.0,8.135045958333462,5.533333333333333
1402830039.0,9.422257791937636,5.2
1402830054.0,7.601387829302226,5.266666666666667
1402830069.0,8.04237018483177,5.2
1402830084.0,5.304700047969651,5.466666666666667
1402830099.0,6.58532932840855,6.066666666666666
1402830114.0,7.482594855715088,5.133333333333334
1402830129.0,4.06788386459909,5.266666666666667
1402830144.0,3.222395833534611,6.2
1402830159.0,3.9767675616694826,6.0
1402830174.0,4.601353060192619,6.266666666666667
1402830189.0,5.253067339863521,5.533333333333333
1402830204.0,6.608202155999261,4.6
1402830219.0,7.103392494028294,6.866666666666666
1402830234.0,10.510046962871671,5.666666666666667
1402830249.0,14.104797917927723,5.8
1402830264.0,14.798273836245762,5.2
1402830279.0,15.459501809015595,5.066666666666666
1402830294.0,12.943860015977295,6.066666666666666
1402830309.0,12.628287988517068,6.0
1402830324.0,10.878103524541304,4.666666666666667
1402830339.0,10.6480325682659,6.0
1402830354.0,11.310137449906524,5.533333333333333
1402830369.0,12.185163306623652,6.4
1402830384.0,15.111539086297912,6.666666666666667
1402830399.0,13.032720687643694,5.4
1402830414.0,10.941232333116092,6.4
1402830429.0,11.902403849277722,5.533333333333333
1402830444.0,11.512152105360885,4.6
1402830459.0,12.106060673573012,6.2
1402830474.0,9.331924954527048,5.866666666666666
1402830489.0,8.880489423074248,7.0
1402830504.0,8.079654270721237,6.2
1402830519.0,9.207571961220815,5.4
1402830534.0,8.131966346765044,5.2
1402830549.0,8.791640698235495,5.533333333333333
1402830564.0,7.910143641962176,5.866666666666666
1402830579.0,8.403207272227698,5.2
1402830594.0,9.997809307697683,6.2
1402830609.0,11.241114155215602,5.6
1402830624.0,8.410095170539089,5.866666666666666
1402830639.0,12.041129235321048,7.733333333333333
1402830654.0,10.147884892974893,5.6
1402830669.0,11.612976297217237,9.8
1402830684.0,9.963803022197569,9.0
1402830699.0,10.90538327279899,5.076923076923077
1402830712.0,12.196723984896265,6.470588235294118
1402830729.0,14.550741280913503,5.933333333333334
1402830744.0,15.461284506336229,4.857142857142857
1402830758.0,15.735276063346399,7.0625
1402830774.0,14.228417030182703,4.066666666666666
1402830789.0,15.327640122265878,6.285714285714286
1402830803.0,16.58797835793534,4.9375
1402830819.0,12.283415098467493,5.6
1402830834.0,14.118947278482128,6.533333333333333
1402830849.0,15.036535551655561,5.2
1402830864.0,14.063275959312382,8.533333333333333
1402830879.0,16.055956599120922,7.076923076923077
1402830892.0,15.11174384587143,4.882352941176471
1402830909.0,16.71646335945264,4.733333333333333
1402830924.0,12.40813677052237,6.733333333333333
1402830939.0,13.6855956946521,4.933333333333334
1402830954.0,10.818477103940307,7.0
1402830969.0,7.144541907376946,5.642857142857143
1402830983.0,8.848332042135434,4.8125
1402830999.0,10.457063752956268,6.642857142857143
1402831013.0,11.57401509243158,10.8
1402831023.0,18.11324997256794,2.4761904761904763
1402831044.0,14.74552383809011,5.266666666666667
1402831059.0,8.365366386544903,7.066666666666666
1402831074.0,14.475518506204391,4.733333333333333
1402831089.0,13.905978258675825,5.714285714285714
1402831103.0,6.448065705785011,5.6875
1402831119.0,8.935213024786123,8.933333333333334
1402831134.0,7.153253376587272,4.0
1402831149.0,3.3538879226163982,11.066666666666666
1402831164.0,6.425235538996871,8.933333333333334
1402831179.0,7.378472449662584,5.857142857142857
1402831193.0,9.779282733184868,5.714285714285714
1402831207.0,9.357316565348503,3.7058823529411766
1402831224.0,9.718640701029816,6.333333333333333
1402831239.0,7.894320380791807,7.466666666666667
1402831254.0,10.794401908898243,6.866666666666666
1402831269.0,9.417444277150173,6.266666666666667
1402831284.0,8.812981303067398,9.285714285714286
1402831291.0,9.108802750611948,-39.08695652173913
1402831314.0,9.563561461654398,-45.06666666666667
1402831329.0,9.079532484712031,-39.266666666666666
1402831344.0,17.3819211133033,-43.06666666666667
1402831359.0,11.999220001589212,-39.46666666666667
1402831374.0,9.695758151164704,-36.36666666666667
1402831404.0,11.913146478004528,-36.93333333333333
1402831419.0,10.494380093577906,-34.333333333333336
1402831449.0,9.266731993332622,-37.093333333333334
1402831524.0,7.153690545699338,-31.711111111111112
1402831569.0,8.111333933007842,-29.533333333333335
1402831584.0,6.073009946415281,-24.98095238095238
1402831689.0,9.733092614618991,-21.066666666666666
1402831704.0,10.435224057082062,-22.133333333333333
1402831719.0,9.247945898272484,-20.333333333333332
1402831734.0,7.00652229656354,-19.933333333333334
1402831749.0,7.302940248095734,-18.733333333333334
1402831779.0,8.3542079900706,-18.466666666666665
1402831794.0,9.273530925354253,-18.0
1402831809.0,10.796467932963596,-18.2
1402831839.0,10.33056686746941,-17.6
1402831854.0,13.047518817806045,-16.766666666666666
1402831884.0,30.231944374886112,-13.178666666666667
1402832259.0,39.14363576507336,-11.0
1402832274.0,37.70903400157663,-10.811111111111112
1402832364.0,32.70658977113047,-10.433333333333334
1402832424.0,31.307923175016974,-10.533333333333333
1402832439.0,30.240914729749555,-10.4
1402832454.0,27.021785655355284,-9.933333333333334
1402832484.0,20.670436418894447,-9.4
1402832499.0,20.16739136217296,-9.566666666666666
1402832559.0,18.539202109612063,-8.433333333333334
1402832589.0,18.485779922606625,-9.11111111111111
1402832634.0,15.826710405040073,-8.6
1402832739.0,10.479546628049869,-7.036918138041734
1402833362.0,5.790923667755127,-4.741935483870968
1402833424.0,3.7843395363752608,-4.7727272727272725
1402833446.0,4.581846296598108,-5.0476190476190474
1 1402824698.0 0.2698161390289616 -0.3333333333333333
2 1402824713.0 0.0 -0.14285714285714285
3 1402824727.0 0.0 0.0
4 1402824743.0 0.17891397465644365 0.125
5 1402824759.0 0.19084163260462247 -0.06666666666666667
6 1402824774.0 0.38163024917782123 0.6666666666666666
7 1402824789.0 0.3304867184147495 0.2
8 1402824804.0 0.5397077704736557 0.5333333333333333
9 1402824819.0 0.4266888318449793 -0.8666666666666667
10 1402824834.0 0.6328549795697324 0.8666666666666667
11 1402824849.0 0.6610051501880395 -0.06666666666666667
12 1402824864.0 0.26981672924872246 -0.7333333333333333
13 1402824879.0 0.6033945065521386 0.8
14 1402824894.0 2.9375247006374603 1.4666666666666666
15 1402824909.0 5.653998576569608 4.933333333333334
16 1402824924.0 4.815965361832741 11.333333333333334
17 1402824939.0 2.099024384537029 5.266666666666667
18 1402824954.0 5.291681157487338 3.7333333333333334
19 1402824969.0 2.553059140951373 5.666666666666667
20 1402824984.0 2.830419891821185 6.933333333333334
21 1402824999.0 3.8022649209852295 3.8
22 1402825014.0 2.912923630485493 5.066666666666666
23 1402825029.0 6.643660449509556 5.2
24 1402825044.0 5.912850589912397 4.2
25 1402825059.0 8.926664909057854 4.066666666666666
26 1402825074.0 7.719006621896848 4.133333333333334
27 1402825089.0 3.1737302076548715 5.583333333333333
28 1402825101.0 9.89356282477254 2.2222222222222223
29 1402825119.0 6.790440873884254 4.133333333333334
30 1402825134.0 10.136475091454633 3.8666666666666667
31 1402825149.0 9.88368152281413 4.066666666666666
32 1402825164.0 6.098265677817853 4.866666666666666
33 1402825179.0 8.541593638554362 4.2
34 1402825194.0 8.471021600139165 4.666666666666667
35 1402825209.0 7.71023376082944 4.133333333333334
36 1402825224.0 5.289228175948124 3.6
37 1402825239.0 8.96230201700948 4.533333333333333
38 1402825254.0 9.97973868423048 4.4
39 1402825269.0 6.3761190784523905 4.0
40 1402825284.0 10.162604378932627 4.8
41 1402825299.0 7.670287182303681 5.0
42 1402825312.0 10.244269572234614 4.823529411764706
43 1402825329.0 9.537897429472565 4.533333333333333
44 1402825344.0 9.87026130196906 4.666666666666667
45 1402825359.0 8.289409164227674 4.266666666666667
46 1402825374.0 7.98958192332991 4.933333333333334
47 1402825389.0 10.44973959256062 5.6
48 1402825404.0 10.8669397316651 3.6
49 1402825419.0 8.634242561873398 5.2
50 1402825434.0 6.50978309541749 3.8666666666666667
51 1402825449.0 7.080924042142966 3.7333333333333334
52 1402825464.0 10.396089250624557 4.4
53 1402825479.0 5.307363448477683 4.2
54 1402825494.0 7.671486257584419 5.066666666666666
55 1402825509.0 7.7377939512047496 4.0
56 1402825524.0 7.180930059880455 4.933333333333334
57 1402825539.0 5.746077453822959 3.533333333333333
58 1402825554.0 9.508273655990035 4.071428571428571
59 1402825568.0 6.385579189627863 4.1875
60 1402825584.0 10.307153961336049 5.733333333333333
61 1402825599.0 8.501326313411662 4.866666666666666
62 1402825614.0 8.343473859081998 4.6
63 1402825629.0 11.882688755540977 4.0
64 1402825644.0 10.3411542370426 3.933333333333333
65 1402825659.0 10.670837166708173 5.133333333333334
66 1402825674.0 11.84772426561707 4.733333333333333
67 1402825689.0 11.610113251080639 4.4
68 1402825704.0 9.85427364871993 5.0
69 1402825719.0 13.175201463372094 2.7333333333333334
70 1402825734.0 12.141460047090495 4.866666666666666
71 1402825749.0 11.06890333627732 4.333333333333333
72 1402825764.0 9.808315534839446 3.8
73 1402825779.0 12.316220879333438 4.466666666666667
74 1402825794.0 9.871487022332552 5.266666666666667
75 1402825809.0 12.514705582935484 5.133333333333334
76 1402825824.0 11.980540103162285 4.4
77 1402825839.0 10.745390876313788 3.533333333333333
78 1402825854.0 12.319837609038276 4.466666666666667
79 1402825869.0 14.19165891943232 4.8
80 1402825884.0 13.692326589438931 3.533333333333333
81 1402825899.0 12.75354545470078 4.066666666666666
82 1402825914.0 10.875752782348444 4.733333333333333
83 1402825929.0 12.599925818555976 5.2
84 1402825944.0 13.750023149276462 4.933333333333334
85 1402825959.0 14.353516071843236 5.733333333333333
86 1402825974.0 15.728337145832292 2.6
87 1402825989.0 16.149396217148436 5.533333333333333
88 1402826004.0 15.70659522181281 5.466666666666667
89 1402826019.0 16.00805992009916 5.4
90 1402826034.0 16.64048197751363 5.533333333333333
91 1402826049.0 16.431179071840578 3.6666666666666665
92 1402826064.0 16.23594812219626 4.866666666666666
93 1402826079.0 14.428310769812255 4.533333333333333
94 1402826094.0 16.755873930541778 5.4
95 1402826109.0 17.46171006879276 5.133333333333334
96 1402826124.0 16.519529695492448 4.666666666666667
97 1402826139.0 17.981325477171758 4.928571428571429
98 1402826153.0 18.233033491614364 5.1875
99 1402826169.0 15.708610938291569 4.6
100 1402826184.0 16.74398208369212 4.066666666666666
101 1402826199.0 17.35076560261136 5.733333333333333
102 1402826214.0 15.133145397749189 5.266666666666667
103 1402826229.0 17.517556404719993 5.6
104 1402826244.0 16.77417848811661 5.866666666666666
105 1402826259.0 15.658585012997147 4.266666666666667
106 1402826274.0 17.034628879609272 4.6
107 1402826289.0 18.118305017719283 6.0
108 1402826304.0 20.663280294159897 5.466666666666667
109 1402826319.0 19.3693990659014 3.6
110 1402826334.0 18.71231991258933 5.266666666666667
111 1402826349.0 19.536728555318366 3.7333333333333334
112 1402826364.0 19.406667559016796 3.8666666666666667
113 1402826379.0 19.702592274251572 3.6
114 1402826394.0 19.88708979452688 4.666666666666667
115 1402826409.0 20.09629280314109 4.866666666666666
116 1402826424.0 19.348123341025993 3.933333333333333
117 1402826439.0 20.548293783268907 4.6
118 1402826454.0 21.831481967943905 4.866666666666666
119 1402826469.0 22.119838654209158 4.2
120 1402826484.0 22.340847091506014 4.333333333333333
121 1402826499.0 23.007397735659563 4.733333333333333
122 1402826514.0 22.146906700115505 5.0
123 1402826529.0 22.884660460465607 4.533333333333333
124 1402826544.0 22.66536749562194 4.266666666666667
125 1402826559.0 23.564008727636498 5.0
126 1402826574.0 26.31498543069786 4.538461538461538
127 1402826587.0 25.787821166104386 3.8823529411764706
128 1402826604.0 23.265457159270724 5.333333333333333
129 1402826619.0 27.200947776554393 4.466666666666667
130 1402826634.0 27.246147872996723 4.8
131 1402826649.0 27.961830649362998 4.666666666666667
132 1402826664.0 30.70834714189334 5.733333333333333
133 1402826679.0 34.818287825114545 4.933333333333334
134 1402826694.0 30.407483170142083 4.133333333333334
135 1402826709.0 31.66167086042465 4.2
136 1402826724.0 30.231083913645985 3.7333333333333334
137 1402826739.0 30.60877090632851 5.066666666666666
138 1402826754.0 33.742376513146944 5.133333333333334
139 1402826769.0 36.49900444180195 5.0
140 1402826784.0 38.15482955550278 5.8
141 1402826799.0 34.98561095135969 5.533333333333333
142 1402826814.0 37.97984724077659 4.066666666666666
143 1402826829.0 38.88133971987438 4.0
144 1402826844.0 37.83126346165981 4.066666666666666
145 1402826859.0 38.98944826012194 4.533333333333333
146 1402826874.0 39.53021899993004 3.2666666666666666
147 1402826889.0 39.53883363562526 3.8666666666666667
148 1402826904.0 39.97088501212326 4.066666666666666
149 1402826919.0 40.62324408235397 3.0
150 1402826934.0 40.58350902240609 4.8
151 1402826949.0 41.193154786878985 4.142857142857143
152 1402826963.0 40.63952283268339 3.5
153 1402826979.0 41.56927447192276 4.333333333333333
154 1402826994.0 41.05967321899782 4.0
155 1402827009.0 41.46585166995736 4.2
156 1402827024.0 42.01875572704889 4.466666666666667
157 1402827039.0 40.768559151069404 3.8
158 1402827054.0 41.144334776703296 5.266666666666667
159 1402827069.0 39.02182009217675 3.466666666666667
160 1402827084.0 41.67305861239275 4.6
161 1402827099.0 41.05675484978417 4.266666666666667
162 1402827114.0 41.07495316615704 6.0
163 1402827129.0 40.76042147828356 4.2
164 1402827144.0 41.98708381839005 3.933333333333333
165 1402827159.0 41.0095635039723 4.866666666666666
166 1402827174.0 41.849832034184004 3.6
167 1402827189.0 41.533893059038775 3.933333333333333
168 1402827204.0 41.75007153132565 4.733333333333333
169 1402827219.0 42.37237541378267 3.466666666666667
170 1402827234.0 42.45497224544021 4.733333333333333
171 1402827249.0 43.22123531135205 4.8
172 1402827264.0 42.70002330557487 4.0
173 1402827279.0 42.32100491638342 4.733333333333333
174 1402827294.0 42.642248501994914 3.0
175 1402827309.0 43.098899693732044 4.4
176 1402827324.0 42.22930380626539 4.466666666666667
177 1402827339.0 42.583415837635016 4.333333333333333
178 1402827354.0 42.72774710900533 4.4
179 1402827369.0 41.60125422325749 4.333333333333333
180 1402827384.0 42.75255713389741 3.8
181 1402827399.0 41.40307581897487 4.8
182 1402827414.0 41.63850782097559 3.933333333333333
183 1402827429.0 41.45639925523427 4.6
184 1402827444.0 42.29627566627944 4.4
185 1402827459.0 42.169087738395056 4.066666666666666
186 1402827474.0 40.67190857510229 5.333333333333333
187 1402827489.0 39.84411833086487 6.466666666666667
188 1402827504.0 36.16912803624817 5.3076923076923075
189 1402827517.0 35.96517388081909 4.470588235294118
190 1402827534.0 34.47328132765954 3.7333333333333334
191 1402827549.0 34.20164439607249 4.933333333333334
192 1402827564.0 34.32364096472049 4.0
193 1402827579.0 33.46455397679755 5.266666666666667
194 1402827594.0 33.20896716329393 4.733333333333333
195 1402827609.0 29.789833642187332 5.066666666666666
196 1402827624.0 24.002392671736633 7.0
197 1402827639.0 22.482851092981367 4.666666666666667
198 1402827654.0 24.141985931386113 3.8
199 1402827669.0 23.033405513276474 4.6
200 1402827684.0 22.982017938199558 4.466666666666667
201 1402827699.0 21.9706554988986 3.6666666666666665
202 1402827714.0 23.461012766741632 3.6
203 1402827729.0 24.178679367451405 4.6
204 1402827744.0 24.03639731192604 3.8
205 1402827759.0 23.67495302908533 4.8
206 1402827774.0 22.782054676980763 5.333333333333333
207 1402827789.0 21.812845010999684 4.142857142857143
208 1402827803.0 20.17334038071638 4.0625
209 1402827819.0 19.312109558274063 4.533333333333333
210 1402827834.0 18.312387322681438 4.4
211 1402827849.0 16.434309531082853 4.266666666666667
212 1402827864.0 16.40106733128142 5.333333333333333
213 1402827879.0 15.724061912671926 4.0
214 1402827894.0 15.29872133598193 5.0
215 1402827909.0 15.37281464001292 4.2
216 1402827924.0 15.919833830202224 4.2
217 1402827939.0 15.158733841042364 5.0
218 1402827954.0 15.870714999871687 4.866666666666666
219 1402827969.0 14.261668702036417 3.7333333333333334
220 1402827984.0 15.253007329210549 4.133333333333334
221 1402827999.0 13.735535961386582 4.666666666666667
222 1402828014.0 13.897147835887562 4.133333333333334
223 1402828029.0 14.920928041080026 4.357142857142857
224 1402828043.0 13.929059437295157 4.0
225 1402828059.0 14.178918337688291 4.533333333333333
226 1402828074.0 14.378856830607145 4.2
227 1402828089.0 12.513008365124504 5.6
228 1402828104.0 12.908823622388626 4.4
229 1402828119.0 12.802263134470556 4.733333333333333
230 1402828134.0 12.404816811591932 4.733333333333333
231 1402828149.0 13.240751193785844 3.8666666666666667
232 1402828164.0 12.396215982418601 5.4
233 1402828179.0 12.615742630207837 4.333333333333333
234 1402828194.0 13.835601718119758 5.4
235 1402828209.0 13.191518065245123 4.266666666666667
236 1402828224.0 13.112378122598594 4.4
237 1402828239.0 10.915556449380201 3.933333333333333
238 1402828254.0 13.046905468021002 4.933333333333334
239 1402828269.0 9.311510547737528 4.933333333333334
240 1402828284.0 10.523719078787623 4.928571428571429
241 1402828298.0 8.29067950233089 4.6
242 1402828308.0 10.027595348848141 4.15
243 1402828328.0 9.948783766843025 3.875
244 1402828344.0 9.723295690431419 2.0
245 1402828352.0 12.098003307319145 4.5
246 1402828374.0 10.152425343634608 5.8
247 1402828389.0 11.520094436359908 5.4
248 1402828404.0 11.083155876788306 4.4
249 1402828419.0 12.526207716858266 5.0
250 1402828434.0 12.470727304844653 4.066666666666666
251 1402828449.0 10.180006790840148 3.8
252 1402828464.0 9.574345868802215 4.0
253 1402828479.0 8.595627044201589 4.866666666666666
254 1402828494.0 9.412645222623818 5.333333333333333
255 1402828509.0 9.303263347188844 3.6
256 1402828524.0 9.492210013363975 4.466666666666667
257 1402828539.0 10.040517579425472 5.230769230769231
258 1402828552.0 10.245534756782233 4.705882352941177
259 1402828569.0 9.338991366864096 4.333333333333333
260 1402828584.0 8.107659063448358 5.133333333333334
261 1402828599.0 9.7963410790021 5.333333333333333
262 1402828614.0 10.18660504742883 6.533333333333333
263 1402828629.0 8.875251533323668 4.533333333333333
264 1402828644.0 7.372713919528596 4.8
265 1402828659.0 7.750384971411079 3.8666666666666667
266 1402828674.0 7.9991459894606844 5.266666666666667
267 1402828689.0 7.832770102914961 5.466666666666667
268 1402828704.0 5.565049467669781 5.066666666666666
269 1402828719.0 5.825440591967513 4.333333333333333
270 1402828734.0 7.092294174966826 4.6
271 1402828749.0 9.033439502493714 4.0
272 1402828764.0 10.699563491435818 5.133333333333334
273 1402828779.0 10.99002047363751 4.733333333333333
274 1402828794.0 9.418653501180707 5.533333333333333
275 1402828809.0 8.163068226860641 3.6
276 1402828824.0 7.884791305099236 4.666666666666667
277 1402828839.0 10.553724721715817 5.733333333333333
278 1402828854.0 10.089144484977387 3.2666666666666666
279 1402828869.0 10.912155524973688 4.533333333333333
280 1402828884.0 10.657633344873876 5.266666666666667
281 1402828899.0 10.52465691729408 5.6
282 1402828914.0 7.950077763531843 4.6
283 1402828929.0 5.9599330120898735 4.666666666666667
284 1402828944.0 5.860864404477263 5.2
285 1402828959.0 6.554121917339461 4.866666666666666
286 1402828974.0 5.618550615363772 3.533333333333333
287 1402828989.0 10.084678366694767 5.466666666666667
288 1402829004.0 9.595383283732419 5.8
289 1402829019.0 7.091216660833825 4.8
290 1402829034.0 7.830115032753822 6.133333333333334
291 1402829049.0 6.879040912184138 6.666666666666667
292 1402829064.0 7.624159336702054 5.333333333333333
293 1402829079.0 7.08384535292609 4.266666666666667
294 1402829094.0 8.816290587642488 4.266666666666667
295 1402829109.0 7.856288839906529 4.6
296 1402829124.0 6.911536282614823 5.0
297 1402829138.0 8.996650040721322 4.8125
298 1402829154.0 6.521511395837799 5.333333333333333
299 1402829169.0 4.377121383501287 4.866666666666666
300 1402829184.0 3.062401739997525 4.533333333333333
301 1402829199.0 8.478060367010862 5.533333333333333
302 1402829214.0 8.30573149491038 5.466666666666667
303 1402829229.0 10.017382400608886 4.6
304 1402829244.0 8.48485086242291 4.866666666666666
305 1402829259.0 7.632493478906933 5.0
306 1402829274.0 7.933859552342172 5.866666666666666
307 1402829289.0 6.05916292544661 4.4
308 1402829304.0 5.380181746473459 5.466666666666667
309 1402829319.0 6.477263216769659 5.133333333333334
310 1402829334.0 6.891227279543478 5.333333333333333
311 1402829349.0 4.0832447912516905 4.666666666666667
312 1402829364.0 5.438022456713503 5.933333333333334
313 1402829379.0 6.581410675617567 5.266666666666667
314 1402829394.0 4.37371953127763 4.733333333333333
315 1402829409.0 7.236632888559165 5.266666666666667
316 1402829424.0 7.920957464895044 5.333333333333333
317 1402829439.0 7.717166028708424 5.333333333333333
318 1402829454.0 8.384185499369064 5.4
319 1402829469.0 9.030401462783239 4.8
320 1402829484.0 9.425691036168155 4.533333333333333
321 1402829499.0 7.2295510574751605 5.2
322 1402829514.0 7.71524577339869 5.0
323 1402829529.0 6.924139085926858 5.4
324 1402829544.0 2.794195179760531 4.666666666666667
325 1402829559.0 3.2491369828115286 5.933333333333334
326 1402829574.0 6.262819521935629 5.0
327 1402829589.0 7.071154738889931 4.933333333333334
328 1402829604.0 10.03500326716492 5.733333333333333
329 1402829619.0 7.413013000117406 5.266666666666667
330 1402829634.0 8.381022753486507 4.6
331 1402829649.0 7.668425433062826 5.6
332 1402829664.0 9.224593497195606 5.4
333 1402829679.0 8.392257950109958 5.4
334 1402829694.0 7.936558459692746 5.266666666666667
335 1402829709.0 7.709344728493456 5.466666666666667
336 1402829724.0 6.72922362444498 5.733333333333333
337 1402829739.0 8.397053271731012 4.6
338 1402829754.0 6.943923302165233 6.266666666666667
339 1402829769.0 7.731113902100629 5.133333333333334
340 1402829784.0 7.490299540578311 5.666666666666667
341 1402829799.0 8.434516691749618 4.333333333333333
342 1402829814.0 9.105713820199869 6.2
343 1402829829.0 10.84305673897168 5.6
344 1402829844.0 8.961851729189673 5.4
345 1402829859.0 8.391347681209565 4.933333333333334
346 1402829874.0 8.988627559179493 5.333333333333333
347 1402829889.0 10.095686303950243 5.866666666666666
348 1402829904.0 11.328423218490562 6.8
349 1402829919.0 8.575540967286173 4.733333333333333
350 1402829934.0 9.48738447908544 5.4
351 1402829949.0 8.694681772353716 5.533333333333333
352 1402829964.0 6.369389259129309 4.933333333333334
353 1402829979.0 9.84631862872324 5.866666666666666
354 1402829994.0 9.855761579823458 5.4
355 1402830009.0 7.716065439785704 4.933333333333334
356 1402830024.0 8.135045958333462 5.533333333333333
357 1402830039.0 9.422257791937636 5.2
358 1402830054.0 7.601387829302226 5.266666666666667
359 1402830069.0 8.04237018483177 5.2
360 1402830084.0 5.304700047969651 5.466666666666667
361 1402830099.0 6.58532932840855 6.066666666666666
362 1402830114.0 7.482594855715088 5.133333333333334
363 1402830129.0 4.06788386459909 5.266666666666667
364 1402830144.0 3.222395833534611 6.2
365 1402830159.0 3.9767675616694826 6.0
366 1402830174.0 4.601353060192619 6.266666666666667
367 1402830189.0 5.253067339863521 5.533333333333333
368 1402830204.0 6.608202155999261 4.6
369 1402830219.0 7.103392494028294 6.866666666666666
370 1402830234.0 10.510046962871671 5.666666666666667
371 1402830249.0 14.104797917927723 5.8
372 1402830264.0 14.798273836245762 5.2
373 1402830279.0 15.459501809015595 5.066666666666666
374 1402830294.0 12.943860015977295 6.066666666666666
375 1402830309.0 12.628287988517068 6.0
376 1402830324.0 10.878103524541304 4.666666666666667
377 1402830339.0 10.6480325682659 6.0
378 1402830354.0 11.310137449906524 5.533333333333333
379 1402830369.0 12.185163306623652 6.4
380 1402830384.0 15.111539086297912 6.666666666666667
381 1402830399.0 13.032720687643694 5.4
382 1402830414.0 10.941232333116092 6.4
383 1402830429.0 11.902403849277722 5.533333333333333
384 1402830444.0 11.512152105360885 4.6
385 1402830459.0 12.106060673573012 6.2
386 1402830474.0 9.331924954527048 5.866666666666666
387 1402830489.0 8.880489423074248 7.0
388 1402830504.0 8.079654270721237 6.2
389 1402830519.0 9.207571961220815 5.4
390 1402830534.0 8.131966346765044 5.2
391 1402830549.0 8.791640698235495 5.533333333333333
392 1402830564.0 7.910143641962176 5.866666666666666
393 1402830579.0 8.403207272227698 5.2
394 1402830594.0 9.997809307697683 6.2
395 1402830609.0 11.241114155215602 5.6
396 1402830624.0 8.410095170539089 5.866666666666666
397 1402830639.0 12.041129235321048 7.733333333333333
398 1402830654.0 10.147884892974893 5.6
399 1402830669.0 11.612976297217237 9.8
400 1402830684.0 9.963803022197569 9.0
401 1402830699.0 10.90538327279899 5.076923076923077
402 1402830712.0 12.196723984896265 6.470588235294118
403 1402830729.0 14.550741280913503 5.933333333333334
404 1402830744.0 15.461284506336229 4.857142857142857
405 1402830758.0 15.735276063346399 7.0625
406 1402830774.0 14.228417030182703 4.066666666666666
407 1402830789.0 15.327640122265878 6.285714285714286
408 1402830803.0 16.58797835793534 4.9375
409 1402830819.0 12.283415098467493 5.6
410 1402830834.0 14.118947278482128 6.533333333333333
411 1402830849.0 15.036535551655561 5.2
412 1402830864.0 14.063275959312382 8.533333333333333
413 1402830879.0 16.055956599120922 7.076923076923077
414 1402830892.0 15.11174384587143 4.882352941176471
415 1402830909.0 16.71646335945264 4.733333333333333
416 1402830924.0 12.40813677052237 6.733333333333333
417 1402830939.0 13.6855956946521 4.933333333333334
418 1402830954.0 10.818477103940307 7.0
419 1402830969.0 7.144541907376946 5.642857142857143
420 1402830983.0 8.848332042135434 4.8125
421 1402830999.0 10.457063752956268 6.642857142857143
422 1402831013.0 11.57401509243158 10.8
423 1402831023.0 18.11324997256794 2.4761904761904763
424 1402831044.0 14.74552383809011 5.266666666666667
425 1402831059.0 8.365366386544903 7.066666666666666
426 1402831074.0 14.475518506204391 4.733333333333333
427 1402831089.0 13.905978258675825 5.714285714285714
428 1402831103.0 6.448065705785011 5.6875
429 1402831119.0 8.935213024786123 8.933333333333334
430 1402831134.0 7.153253376587272 4.0
431 1402831149.0 3.3538879226163982 11.066666666666666
432 1402831164.0 6.425235538996871 8.933333333333334
433 1402831179.0 7.378472449662584 5.857142857142857
434 1402831193.0 9.779282733184868 5.714285714285714
435 1402831207.0 9.357316565348503 3.7058823529411766
436 1402831224.0 9.718640701029816 6.333333333333333
437 1402831239.0 7.894320380791807 7.466666666666667
438 1402831254.0 10.794401908898243 6.866666666666666
439 1402831269.0 9.417444277150173 6.266666666666667
440 1402831284.0 8.812981303067398 9.285714285714286
441 1402831291.0 9.108802750611948 -39.08695652173913
442 1402831314.0 9.563561461654398 -45.06666666666667
443 1402831329.0 9.079532484712031 -39.266666666666666
444 1402831344.0 17.3819211133033 -43.06666666666667
445 1402831359.0 11.999220001589212 -39.46666666666667
446 1402831374.0 9.695758151164704 -36.36666666666667
447 1402831404.0 11.913146478004528 -36.93333333333333
448 1402831419.0 10.494380093577906 -34.333333333333336
449 1402831449.0 9.266731993332622 -37.093333333333334
450 1402831524.0 7.153690545699338 -31.711111111111112
451 1402831569.0 8.111333933007842 -29.533333333333335
452 1402831584.0 6.073009946415281 -24.98095238095238
453 1402831689.0 9.733092614618991 -21.066666666666666
454 1402831704.0 10.435224057082062 -22.133333333333333
455 1402831719.0 9.247945898272484 -20.333333333333332
456 1402831734.0 7.00652229656354 -19.933333333333334
457 1402831749.0 7.302940248095734 -18.733333333333334
458 1402831779.0 8.3542079900706 -18.466666666666665
459 1402831794.0 9.273530925354253 -18.0
460 1402831809.0 10.796467932963596 -18.2
461 1402831839.0 10.33056686746941 -17.6
462 1402831854.0 13.047518817806045 -16.766666666666666
463 1402831884.0 30.231944374886112 -13.178666666666667
464 1402832259.0 39.14363576507336 -11.0
465 1402832274.0 37.70903400157663 -10.811111111111112
466 1402832364.0 32.70658977113047 -10.433333333333334
467 1402832424.0 31.307923175016974 -10.533333333333333
468 1402832439.0 30.240914729749555 -10.4
469 1402832454.0 27.021785655355284 -9.933333333333334
470 1402832484.0 20.670436418894447 -9.4
471 1402832499.0 20.16739136217296 -9.566666666666666
472 1402832559.0 18.539202109612063 -8.433333333333334
473 1402832589.0 18.485779922606625 -9.11111111111111
474 1402832634.0 15.826710405040073 -8.6
475 1402832739.0 10.479546628049869 -7.036918138041734
476 1402833362.0 5.790923667755127 -4.741935483870968
477 1402833424.0 3.7843395363752608 -4.7727272727272725
478 1402833446.0 4.581846296598108 -5.0476190476190474

Wyświetl plik

@ -0,0 +1,81 @@
#!/usr/bin/python
import math
import csv
import time
from datetime import datetime
####################################################################################################
# Assume the earth is a nice smooth sphere
earth_radius = 6400000
def angle_between(vec1, vec2):
dot_product = dot_product_spherical(vec1, vec2)
vec1mag = math.sqrt(dot_product_spherical(vec1, vec1))
vec2mag = math.sqrt(dot_product_spherical(vec2, vec2))
arg = round(dot_product / (vec1mag * vec2mag), 13)
alpha = math.acos(arg)
return alpha
def dot_product_spherical(vec1, vec2):
abcosalpha = ((vec1[2]*vec2[2]*math.cos(vec1[0])*math.cos(vec2[0])*math.cos(vec1[1])*math.cos(vec2[1]))
+ (vec1[2]*vec2[2]*math.cos(vec1[0])*math.cos(vec2[0])*math.sin(vec1[1])*math.sin(vec2[1]))
+ (vec1[2]*vec2[2]*math.sin(vec1[0])*math.sin(vec2[0])))
return abcosalpha
# Finds the ground distance between two spherical vectors
# Works well only for vectors with a small angular difference
def ground_distance_covered(vec1, vec2):
distance = math.sqrt(2) * vec1[2] * math.sqrt(1 - math.cos(angle_between(vec1, vec2)))
return distance
#####################################################################################################
file_path = "balloon_coords.csv"
data = []
with open(file_path, 'rb') as csvfile:
file_reader = csv.reader(csvfile)
for row in file_reader:
launch_date = '2014-06-15 '
thisDateTime = datetime.strptime(launch_date + row[0], '%Y-%m-%d %H:%M:%S')
formattedRow = []
formattedRow.append(time.mktime(thisDateTime.timetuple()))# Time
formattedRow.append(math.radians(float(row[1])))# Latitude
formattedRow.append(math.radians(float(row[2])))# Longitude
formattedRow.append(float(row[3]))# Altitude
data.append(formattedRow)
final_data = []
out_file = open('speed.csv', 'w')
file_writer = csv.writer(out_file)
for i in range(0, len(data)-1):
thisTime = data[i][0]
nextTime = data[i+1][0]
timeDiff = nextTime - thisTime
start = [data[i][1], data[i][2], data[i][3] + earth_radius]
end = [data[i+1][1], data[i+1][2], data[i+1][3] + earth_radius]
dist = ground_distance_covered(start, end)
ground_speed = dist / timeDiff
alt_speed = (data[i+1][3] - data[i][3]) / timeDiff
final_data.append([thisTime, ground_speed, alt_speed])
for i in range(0, len(final_data)):
print final_data[i][0], final_data[i][1]
with open('speed.csv', 'w') as file_pointer:
file_writer = csv.writer(file_pointer, delimiter=',')
file_writer.writerows(final_data)

Wyświetl plik

@ -0,0 +1,10 @@
function initialize() {
var map = new google.maps.Map(document.getElementById('balloon-trajectory'), {});
var ctaLayer = new google.maps.KmlLayer({
url: 'http://www.bristol-seds.co.uk/assets/posts/buseds1/path.kml'
});
ctaLayer.setMap(map);
}
google.maps.event.addDomListener(window, 'load', initialize);

Plik binarny nie jest wyświetlany.

Po

Szerokość:  |  Wysokość:  |  Rozmiar: 107 KiB

Plik binarny nie jest wyświetlany.

Po

Szerokość:  |  Wysokość:  |  Rozmiar: 80 KiB

Plik binarny nie jest wyświetlany.

Po

Szerokość:  |  Wysokość:  |  Rozmiar: 721 KiB

Plik binarny nie jest wyświetlany.

Po

Szerokość:  |  Wysokość:  |  Rozmiar: 766 KiB

Plik binarny nie jest wyświetlany.

Po

Szerokość:  |  Wysokość:  |  Rozmiar: 72 KiB

Plik binarny nie jest wyświetlany.

Po

Szerokość:  |  Wysokość:  |  Rozmiar: 18 KiB

Plik binarny nie jest wyświetlany.

Po

Szerokość:  |  Wysokość:  |  Rozmiar: 9.6 KiB

Plik binarny nie jest wyświetlany.

Po

Szerokość:  |  Wysokość:  |  Rozmiar: 17 KiB

Plik binarny nie jest wyświetlany.

Po

Szerokość:  |  Wysokość:  |  Rozmiar: 23 KiB

Plik binarny nie jest wyświetlany.

Po

Szerokość:  |  Wysokość:  |  Rozmiar: 386 KiB

Plik binarny nie jest wyświetlany.

Po

Szerokość:  |  Wysokość:  |  Rozmiar: 197 KiB

Plik binarny nie jest wyświetlany.

Po

Szerokość:  |  Wysokość:  |  Rozmiar: 256 KiB

Some files were not shown because too many files have changed in this diff Show More