removed stuff
This commit is contained in:
parent
4203301112
commit
041b2608d5
7 changed files with 1 additions and 256 deletions
|
|
@ -1,86 +0,0 @@
|
|||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<kml xmlns="http://www.opengis.net/kml/2.2" xmlns:gx="http://www.google.com/kml/ext/2.2">
|
||||
<Document>
|
||||
<Folder>
|
||||
<name>Waypoints</name>
|
||||
<Placemark>
|
||||
<name>Testing</name>
|
||||
<Point>
|
||||
<coordinates>9.195427,45.480224</coordinates>
|
||||
</Point>
|
||||
</Placemark>
|
||||
<Placemark>
|
||||
<name>Testing</name>
|
||||
<Point>
|
||||
<coordinates>9.211414,45.479559</coordinates>
|
||||
</Point>
|
||||
</Placemark>
|
||||
<Placemark>
|
||||
<name>Testing</name>
|
||||
<Point>
|
||||
<coordinates>9.203267,45.470044</coordinates>
|
||||
</Point>
|
||||
</Placemark>
|
||||
<Placemark>
|
||||
<name>Testing</name>
|
||||
<Point>
|
||||
<coordinates>9.191543,45.475358</coordinates>
|
||||
</Point>
|
||||
</Placemark>
|
||||
<Placemark>
|
||||
<name>Testing</name>
|
||||
<Point>
|
||||
<coordinates>9.208902,45.474596</coordinates>
|
||||
</Point>
|
||||
</Placemark>
|
||||
<Placemark>
|
||||
<name>Testing</name>
|
||||
<Point>
|
||||
<coordinates>9.214803,45.478549</coordinates>
|
||||
</Point>
|
||||
</Placemark>
|
||||
<Placemark>
|
||||
<name>Testing</name>
|
||||
<Point>
|
||||
<coordinates>9.210735,45.468963</coordinates>
|
||||
</Point>
|
||||
</Placemark>
|
||||
<Placemark>
|
||||
<name>Testing</name>
|
||||
<Point>
|
||||
<coordinates>9.194717,45.476398</coordinates>
|
||||
</Point>
|
||||
</Placemark>
|
||||
<Placemark>
|
||||
<name>Testing</name>
|
||||
<Point>
|
||||
<coordinates>9.200197,45.475918</coordinates>
|
||||
</Point>
|
||||
</Placemark>
|
||||
<Placemark>
|
||||
<name>Testing</name>
|
||||
<Point>
|
||||
<coordinates>9.214712,45.479553</coordinates>
|
||||
</Point>
|
||||
</Placemark>
|
||||
<Placemark>
|
||||
<name>Testing</name>
|
||||
<Point>
|
||||
<coordinates>9.208935,45.477010</coordinates>
|
||||
</Point>
|
||||
</Placemark>
|
||||
<Placemark>
|
||||
<name>Testing</name>
|
||||
<Point>
|
||||
<coordinates>9.197640,45.481823</coordinates>
|
||||
</Point>
|
||||
</Placemark>
|
||||
<Placemark>
|
||||
<name>Testing</name>
|
||||
<Point>
|
||||
<coordinates>9.212113,45.475774</coordinates>
|
||||
</Point>
|
||||
</Placemark>
|
||||
</Folder>
|
||||
</Document>
|
||||
</kml>
|
||||
29
stuff/gpx.py
29
stuff/gpx.py
|
|
@ -1,29 +0,0 @@
|
|||
import gpxpy
|
||||
|
||||
coordinates = [
|
||||
(45.48022428207604,9.195426779729253),
|
||||
(45.47955920386783,9.211414017521326),
|
||||
(45.47004427949249,9.203266840037728),
|
||||
(45.475357889920666,9.191542629685118),
|
||||
(45.47459610057904,9.208902213194566),
|
||||
(45.478548651650364,9.214803404483442),
|
||||
(45.46896260077224,9.210735083849189),
|
||||
(45.476397626274775,9.194716709512006),
|
||||
(45.475918164099824,9.200196924291388),
|
||||
(45.479553171431604,9.21471213487326),
|
||||
(45.47701013861511,9.208935252810576),
|
||||
(45.48182315628131,9.197640483441692),
|
||||
(45.47577401244318,9.212112575183651)
|
||||
]
|
||||
|
||||
gpx = gpxpy.gpx.GPX()
|
||||
|
||||
for coord in coordinates:
|
||||
lat, lon = coord
|
||||
w = gpxpy.gpx.GPXWaypoint()
|
||||
w.latitude = lat
|
||||
w.longitude = lon
|
||||
w.name = "Testing"
|
||||
gpx.waypoints.append(w)
|
||||
|
||||
print(gpx.to_xml())
|
||||
|
|
@ -1,85 +0,0 @@
|
|||
|
||||
<!DOCTYPE html>
|
||||
<html lang="en">
|
||||
<head>
|
||||
<base target="_top">
|
||||
<meta charset="utf-8">
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1">
|
||||
|
||||
<title>NFC Map</title>
|
||||
|
||||
<link rel="shortcut icon" type="image/x-icon" href="/images/favicon.ico" />
|
||||
|
||||
<link rel="stylesheet" href="https://unpkg.com/leaflet@1.9.3/dist/leaflet.css" integrity="sha256-kLaT2GOSpHechhsozzB+flnD+zUyjE2LlfWPgU04xyI=" crossorigin=""/>
|
||||
<link rel="stylesheet" href="map.css" />
|
||||
<script src="https://unpkg.com/leaflet@1.9.3/dist/leaflet.js" integrity="sha256-WBkoXOwTeyKclOHuWtc+i2uENFpDZ9YPdf5Hf+D7ewM=" crossorigin=""></script>
|
||||
|
||||
</head>
|
||||
<body>
|
||||
<script>
|
||||
var nfcTags = {
|
||||
"type": "FeatureCollection",
|
||||
"features": [
|
||||
{
|
||||
"type": "Feature",
|
||||
"id": 51,
|
||||
"geometry": {
|
||||
"type": "Point",
|
||||
"coordinates": [34.98055814491073, 32.70124645574966]
|
||||
},
|
||||
"properties": {
|
||||
"title": "Entry 1"
|
||||
},
|
||||
},
|
||||
{
|
||||
"type": "Feature",
|
||||
"id": 51,
|
||||
"geometry": {
|
||||
"type": "Point",
|
||||
"coordinates": [34.981198952126796, 32.70106467439943]
|
||||
},
|
||||
"properties": {
|
||||
"title": "Entry 2"
|
||||
},
|
||||
},
|
||||
{
|
||||
"type": "Feature",
|
||||
"id": 51,
|
||||
"geometry": {
|
||||
"type": "Point",
|
||||
"coordinates": [34.98210034203006, 32.7018532647309]
|
||||
},
|
||||
"properties": {
|
||||
"title": "Entry 3"
|
||||
},
|
||||
},
|
||||
{
|
||||
"type": "Feature",
|
||||
"id": 51,
|
||||
"geometry": {
|
||||
"type": "Point",
|
||||
"coordinates": [34.981822380395634, 32.70227094745556]
|
||||
},
|
||||
"properties": {
|
||||
"title": "Entry 4"
|
||||
},
|
||||
},
|
||||
{
|
||||
"type": "Feature",
|
||||
"id": 51,
|
||||
"geometry": {
|
||||
"type": "Point",
|
||||
"coordinates": [34.982425954297526, 32.70179311824144]
|
||||
},
|
||||
"properties": {
|
||||
"title": "Entry 5"
|
||||
},
|
||||
}
|
||||
]
|
||||
};
|
||||
|
||||
</script>
|
||||
<div id='map'></div>
|
||||
<script src="map.js"></script>
|
||||
</body>
|
||||
</html>
|
||||
|
|
@ -1,9 +0,0 @@
|
|||
html, body {
|
||||
height: 100%;
|
||||
margin: 0;
|
||||
padding: 0;
|
||||
}
|
||||
|
||||
#map {
|
||||
height: 100%;
|
||||
width: 100vw; }
|
||||
|
|
@ -1,42 +0,0 @@
|
|||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<gpx xmlns="http://www.topografix.com/GPX/1/1" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://www.topografix.com/GPX/1/1 http://www.topografix.com/GPX/1/1/gpx.xsd" version="1.1" creator="gpx.py -- https://github.com/tkrajina/gpxpy">
|
||||
<wpt lat="45.48022428207604" lon="9.195426779729253">
|
||||
<name>Testing</name>
|
||||
</wpt>
|
||||
<wpt lat="45.47955920386783" lon="9.211414017521326">
|
||||
<name>Testing</name>
|
||||
</wpt>
|
||||
<wpt lat="45.47004427949249" lon="9.203266840037728">
|
||||
<name>Testing</name>
|
||||
</wpt>
|
||||
<wpt lat="45.475357889920666" lon="9.191542629685118">
|
||||
<name>Testing</name>
|
||||
</wpt>
|
||||
<wpt lat="45.47459610057904" lon="9.208902213194566">
|
||||
<name>Testing</name>
|
||||
</wpt>
|
||||
<wpt lat="45.478548651650364" lon="9.214803404483442">
|
||||
<name>Testing</name>
|
||||
</wpt>
|
||||
<wpt lat="45.46896260077224" lon="9.210735083849189">
|
||||
<name>Testing</name>
|
||||
</wpt>
|
||||
<wpt lat="45.476397626274775" lon="9.194716709512006">
|
||||
<name>Testing</name>
|
||||
</wpt>
|
||||
<wpt lat="45.475918164099824" lon="9.200196924291388">
|
||||
<name>Testing</name>
|
||||
</wpt>
|
||||
<wpt lat="45.479553171431604" lon="9.21471213487326">
|
||||
<name>Testing</name>
|
||||
</wpt>
|
||||
<wpt lat="45.47701013861511" lon="9.208935252810576">
|
||||
<name>Testing</name>
|
||||
</wpt>
|
||||
<wpt lat="45.48182315628131" lon="9.197640483441692">
|
||||
<name>Testing</name>
|
||||
</wpt>
|
||||
<wpt lat="45.47577401244318" lon="9.212112575183651">
|
||||
<name>Testing</name>
|
||||
</wpt>
|
||||
</gpx>
|
||||
|
|
@ -1 +0,0 @@
|
|||
ba12997c8d7dd935d7891d053698369a106e84f9f8ad0ba87b242bff2d4162d1f91d404b571144a588831c018fb761843b9330179082935bab75361cdabfe565fe91fa63c03be7607b9a1761335c1e5dc42d4acb17b28a993df752cf6e6dda357ba2d7d404f1a4f1c984ab7467820252d4570c8d35fd4109c2dd376b988b9c05786867d0b0a46c011aa6f8656360927e07b0f4f350b147e92cf9da36e99f93594974db19a71a27f9ed3dc98979c328b33e9c0f042e758cd190821389a6be722f4d0feb297eb
|
||||
|
|
@ -7,12 +7,9 @@ sys.path.append(os.curdir)
|
|||
from pelicanconf import *
|
||||
|
||||
# If your site is available via HTTPS, make sure SITEURL begins with https://
|
||||
SITEURL = ''
|
||||
SITEURL = 'https://nfc.flux.vision'
|
||||
RELATIVE_URLS = False
|
||||
|
||||
FEED_ALL_ATOM = 'feeds/all.atom.xml'
|
||||
CATEGORY_FEED_ATOM = 'feeds/{slug}.atom.xml'
|
||||
|
||||
DELETE_OUTPUT_DIRECTORY = True
|
||||
|
||||
# Following items are often useful when publishing
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue