TL;DR
Install Postgres 9.6, and then:
sudo pg_dropcluster 9.6 main --stop
sudo service postgresql stop
sudo pg_upgradecluster 9.5 main
sudo pg_dropcluster 9.5 main| <html> | |
| <head> | |
| <title>Column Layout</title> | |
| <!-- GC --> | |
| <style type="text/css"> | |
| html, body { | |
| font: normal 12px verdana; | |
| margin: 0; |
| { | |
| "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", |
| #-*- 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 |
| #!/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 |
| Ext.define('FeatureProperty', { | |
| extend: 'Ext.data.Model', | |
| fields: [{ | |
| name: 'prop', | |
| type: 'string' | |
| }, { | |
| name: 'value', | |
| type: 'string' | |
| }] | |
| }); |
TL;DR
Install Postgres 9.6, and then:
sudo pg_dropcluster 9.6 main --stop
sudo service postgresql stop
sudo pg_upgradecluster 9.5 main
sudo pg_dropcluster 9.5 main
| [https://gis.stackexchange.com/questions/257974/postgis-multipolygon-when-converted-to-shapefile-doesnt-match-the-source-geomet PostGIS Multipolygon when converted to shapefile doesn't match the source geometry] |
| Can not attched a volume |
| """ | |
| Standalone python script for QGIS3 on OSX. | |
| """ | |
| import os | |
| import sys | |
| # Define plugin locations from QGIS3 | |
| sys.path.append('/Applications/QGIS3.app/Contents/Resources/python/') | |
| sys.path.append('/Applications/QGIS3.app/Contents/Resources/python/plugins') | |
| # Define Qt5 plugin path since Qt5 can't find it |