- mapplotlib
- numpy
This file contains 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
<VirtualHost *:80> | |
DocumentRoot /home/www/qgis-server | |
ServerName 172.16.0.162 | |
ErrorLog ${APACHE_LOG_DIR}/qgis-server-error.log | |
LogFormat "%h %l %u %t \"%r\" %s %b \"%{Referer}i\" \"%{User-Agent}i\"" custom | |
CustomLog ${APACHE_LOG_DIR}/qgis-server-access.log custom | |
FcgidMaxRequestsPerProcess 1000 | |
FcgidInitialEnv QGIS_SERVER_LOG_FILE /tmp/qgis-000.log | |
FcgidInitialEnv QGIS_SERVER_LOG_LEVEL 2 |
This file contains 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
from sqlalchemy import Column, Integer, String, ForeignKey, MetaData, create_engine | |
from sqlalchemy.orm import sessionmaker, relationship, scoped_session | |
from sqlalchemy.ext.declarative import declarative_base | |
from marshmallow import fields | |
from marshmallow_sqlalchemy import ModelSchema | |
engine = create_engine("postgresql://elemoine@localhost/gis", echo=True) | |
metadata = MetaData(engine) |
This file contains 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
RewriteRule "^/ogc/(.*)$" "-" [E=MS_MAPFILE:/var/www/$1.map] | |
<Location "/ogc/"> | |
SetHandler fcgid-script | |
Options +ExecCGI | |
FcgidWrapper /usr/lib/cgi-bin/mapserv virtual | |
Require all granted | |
</Location> |
This file contains 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
keystone | |
-------- | |
keystone tenant-list | |
openstack project list | |
keystone tenant-create --name <tenant-name> --description <tenant-desc> --enabled true | |
openstack project create <project-name> --description <project-desc> --enable | |
keystone user-create --name <user-name> --tenant <tenant-name> --pass <user-password> --email <user-email> --enabled true |
This file contains 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
2016/04/08 21:24:36 Pre-loading: [keystone_7_0_decoder] | |
2016/04/08 21:24:36 Pre-loading: [elasticsearch_encoder] | |
2016/04/08 21:24:36 Pre-loading: [influxdb_encoder] | |
2016/04/08 21:24:36 Pre-loading: [http_metrics_filter] | |
2016/04/08 21:24:36 Pre-loading: [influxdb_accumulator_filter] | |
2016/04/08 21:24:36 Pre-loading: [keystone_7_0_logstreamer] | |
2016/04/08 21:24:36 Pre-loading: [elasticsearch_output] | |
2016/04/08 21:24:36 Pre-loading: [influxdb_output] | |
2016/04/08 21:24:36 Pre-loading: [openstack_splitter] | |
2016/04/08 21:24:36 Pre-loading: [NullSplitter] |
This file contains 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
2016/03/31 11:56:20 Diagnostics: 30 packs have been idle more than 120 seconds. | |
2016/03/31 11:56:20 Diagnostics: (inject) Plugin names and quantities found on idle packs: | |
2016/03/31 11:56:20 Diagnostics: influxdb_accumulator_filter: 30 | |
2016/03/31 11:56:20 | |
2016/03/31 11:56:20 Diagnostics: 32 packs have been idle more than 120 seconds. | |
2016/03/31 11:56:20 Diagnostics: (input) Plugin names and quantities found on idle packs: | |
2016/03/31 11:56:20 Diagnostics: elasticsearch_output: 32 | |
2016/03/31 11:56:20 Diagnostics: http_metrics_filter: 32 | |
2016/03/31 11:56:20 | |
2016/03/31 11:56:23 Queue report initiated. |
I hereby claim:
- I am elemoine on github.
- I am elemoine (https://keybase.io/elemoine) on keybase.
- I have a public key whose fingerprint is F1AD 5DD0 D92F F17D 08A1 5E0B 2688 7FF0 E588 ECCD
To claim this, I am signing this object:
This file contains 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/bash | |
# https://gist.github.com/elemoine/27748e205d36a9006190 | |
# Install packages. | |
sudo apt-get install kvm cloud-utils | |
# Download an Ubuntu cloud image. | |
wget http://cloud-images.ubuntu.com/releases/14.04/release/ubuntu-14.04-server-cloudimg-amd64-disk1.img -O disk.img.dist | |
# Create user-data file for devstack. |
This file contains 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": { | |
"dpi": 72, | |
"center": [ | |
681185, | |
6412222 | |
], | |
"projection": "EPSG:3857", | |
"scale": 10000, |
NewerOlder