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
| #!/usr/bin/env python | |
| # -*- coding: utf-8 -*- | |
| import requests, urlparse | |
| import json | |
| import argparse | |
| import logging | |
| parser = argparse.ArgumentParser( | |
| description = """DOC""", |
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 -*- | |
| # coding: utf8 | |
| import requests | |
| #from requests.auth import HTTPBasicAuth | |
| from storage import Storage | |
| @auth.requires_login() | |
| def index(): |
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
| from shapely.geometry import MultiPoint, Point, Polygon | |
| from scipy.spatial import Voronoi | |
| import numpy as np | |
| import matplotlib.pyplot as plt | |
| """ | |
| 1. buffer di max 20 m intorno al poligono building | |
| 2. selezione dei punti contenuti nel buffer | |
| 3. suddivizione del poligono originario in aree di voronoi come qui di seguito | |
| 4. assegnazione per ogni poligono di voronoi delle caratteristiche del punto |
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 -*- | |
| osm = DAL(myconf.get('osm.uri'), | |
| pool_size = myconf.get('osm.pool_size'), | |
| migrate_enabled = False, | |
| check_reserved = ['all'], | |
| lazy_tables = True | |
| ) | |
| commons = osm.Table(osm, "commons", |
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
| class conf: | |
| def __init__(self, path): | |
| self.config = configparser.SafeConfigParser() | |
| self.config.read(path) | |
| self.path = path | |
| def write(self, section, option, value): | |
| """ | |
| http://www.programcreek.com/python/example/1033/ConfigParser.SafeConfigParser |
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 -*- | |
| import bisect | |
| from itertools import izip | |
| class Squeue(object): | |
| """ """ | |
| def __init__(self, _iter, key=None): | |
| super(Squeue, self).__init__() |
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
| @service.run | |
| def getmap(conn, tablename, the_geom="geom", bbox=''): | |
| """ """ | |
| session.forget(response) | |
| js = """ | |
| var url = "%(url)s"; | |
| var gargs = "%(bbox)s" && '?bbox='+"%(bbox)s"; | |
| var dynSource = new ol.source.Vector({ | |
| url: url + gargs, | |
| format: new ol.format.GeoJSON(), |
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 dal import Table | |
| import geojson, json, pyproj | |
| import shapely.wkt | |
| from dal import Expression | |
| # from gluon.dal import geoPolygon | |
| from dal import geoPoint, geoLine, geoPolygon | |
| # [...] |
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
| #!/usr/bin/env python | |
| # -*- coding: utf-8 -*- | |
| import unittest | |
| from gluon.serializers import json as json_dumper | |
| class UsingJsonFieldWithValidateAndUpdateOrInsertTestCase(unittest.TestCase): | |
| def setUp(self): | |
| db.define_table('tt', Field('aa', 'json', default={})) |
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/bash | |
| git clone --recursive https://github.com/web2py/web2py.git web2py_temp | |
| cd web2py_temp | |
| git checkout tags/R-2.11.2 | |
| git submodule update --init --recursive | |
| python scripts/make_min_web2py.py ../web2py | |
| mv applications/admin ../web2py/applications/ | |
| cd ../ | |
| rm -rf web2py_temp |