This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Ext.define('FeatureProperty', { | |
extend: 'Ext.data.Model', | |
fields: [{ | |
name: 'prop', | |
type: 'string' | |
}, { | |
name: 'value', | |
type: 'string' | |
}] | |
}); |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/sh | |
NAME=opentripplanner | |
JAR=/home/jgr/otp/otp-0.19.0-SNAPSHOT-shaded.jar | |
BASE=/home/jgr/otp | |
PIDFILE="/var/run/$NAME.pid" | |
case $1 in | |
start) | |
echo "Starting $NAME ..." | |
if [ ! -f $PIDFILE ]; then | |
cd $BASE |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#-*- coding: utf-8 -*- | |
from BaseHTTPServer import BaseHTTPRequestHandler | |
import urlparse | |
import ephem, datetime | |
import json | |
# Phases of the Moon, using the datetime.now() at UTC | |
# http://127.0.0.1:8899/ | |
# Phases of the Moon, using the datetime.datetime(int(year), int(month), int(day))) at UTC |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ | |
"attributes": { | |
"map": { | |
"center": [-26000, 100500], | |
"dpi": 72, | |
"layers": [{ | |
"type": "WMTS", | |
"baseURL": "http://a.geomaster.pt/mapproxy/wmts/osm/{TileMatrixSet}/{TileMatrix}/{TileCol}/{TileRow}.png", | |
"opacity": 1, | |
"layer": "osm", |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<html> | |
<head> | |
<title>Column Layout</title> | |
<!-- GC --> | |
<style type="text/css"> | |
html, body { | |
font: normal 12px verdana; | |
margin: 0; |
NewerOlder