Skip to content

Instantly share code, notes, and snippets.

View reinvented's full-sized avatar

Peter Rukavina reinvented

View GitHub Profile
@reinvented
reinvented / map.geojson
Last active December 7, 2016 14:17
Community of Crapaud
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
@reinvented
reinvented / peileg.strm
Created November 22, 2016 18:38
Kodi stream file for PEI Legislative Assembly live video
#EXTM3U
#EXTINF:-1,PEI Legislative Assembly+
http://http-delivery.isilive.ca/live/_definst_/pei/live/chunklist.m3u8
@reinvented
reinvented / osm-relation2points.php
Created January 14, 2016 20:56
Quick hack to take an OpenStreetMap bus route relation and convert it to an ordered series of points (suitable for use in a GTFS feed)
<?php
// This is the ID of the bus route relation.
$relation = '5838068';
// Retrieve the OSM for the object (which is XML of the relation and all of its children)
$xml = simplexml_load_file("http://www.openstreetmap.org/api/0.6/relation/$relation/full");
// First, we'll get all the ways that make up the "route" relation (assuming here there's only one!)
$relation_ways = array();
@reinvented
reinvented / Community_Bus.gpx
Created January 13, 2016 19:52
Community Bus Transit Route as GPX, exported from OpenStreetMap
<?xml version="1.0" encoding="UTF-8" standalone="yes"?>
<gpx
version="1.0"
creator="rel2gpx"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xmlns="http://www.topografix.com/GPX/1/0"
xsi:schemaLocation="http://www.topografix.com/GPX/1/0 http://www.topografix.com/GPX/1/0/gpx.xsd">
<bounds minlat='46.2334995' minlon='-63.1500221' maxlat='46.2683004' maxlon='-63.0952928'/>
<trk>
<name>5838068_001_28967954_Oneway</name>
@reinvented
reinvented / University_Avenue_Express_Uptown.gpx
Created January 13, 2016 19:48
University Avenue Express Uptown Transit Route as GPX, exported from OpenStreetMap
<?xml version="1.0" encoding="UTF-8" standalone="yes"?>
<gpx
version="1.0"
creator="rel2gpx"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xmlns="http://www.topografix.com/GPX/1/0"
xsi:schemaLocation="http://www.topografix.com/GPX/1/0 http://www.topografix.com/GPX/1/0/gpx.xsd">
<bounds minlat='46.2348950' minlon='-63.1472103' maxlat='46.2657958' maxlon='-63.1265359'/>
<trk>
<name>3425884_335210729_Oneway</name>
@reinvented
reinvented / poi.txt
Last active January 5, 2016 18:08
Overpass API Query to extract POIs around a point
[out:json][timeout:25];
// gather results
(
way["office"~".*"](around:100,46.23361, -63.12738);
node["office"~".*"](around:100,46.23361, -63.12738);
way["shop"~".*"](around:100,46.23361, -63.12738);
node["shop"~".*"](around:100,46.23361, -63.12738);
way["amenity"~"restaurant|cafe|library|bank|theatre|school|college|university"](around:100,46.23361, -63.12738);
node["amenity"~"restaurant|cafe|library|bank|theatre|school|college|university"](around:100,46.23361, -63.12738);
);
@reinvented
reinvented / trails-on-pei.csv
Last active December 26, 2015 14:22
Trails on Prince Edward Island
Trail Name OpenStreetMap Relation URL Network
Brookvale Nordic Trails http://www.openstreetmap.org/relation/5752507 Brookvale Ski Park
Brookvale Demonstration Woodlot Trails http://www.openstreetmap.org/relation/5746787 Demonstration Woodlots
Camp Tamawaby Demonstration Woodlot Trail http://www.openstreetmap.org/relation/5746830 Demonstration Woodlots
Valleyfield Demonstration Woodlot Trail http://www.openstreetmap.org/relation/5746800 Demonstration Woodlots
Auburn Demonstration Woodlot Trail http://www.openstreetmap.org/relation/5746789 Demonstration Woodlots
Gairloch Road Trail http://www.openstreetmap.org/relation/5689883 Island Trails
Boughton River Trail http://www.openstreetmap.org/relation/5685388 Island Trails
Forest Hill Trail http://www.openstreetmap.org/relation/5689271 Island Trails
Dromore Woodland Trails http://www.openstreetmap.org/relation/5689296 Island Trails
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
@reinvented
reinvented / grove-places-in-usa.csv
Created December 1, 2015 14:25
A list of all the place names in the USA with "Grove" in the name, with a count of each.
place count
Oak Grove 160
Shady Grove 89
Pleasant Grove 89
Pine Grove 85
Cedar Grove 75
Walnut Grove 53
Maple Grove 42
Hickory Grove 32
Locust Grove 29
@reinvented
reinvented / map.geojson
Last active December 1, 2015 14:11
There are 31 places in the state of Pennsylvania named "Five Points."
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.