Released version 0.0.22.
git-svn-id: http://www.winterrodeln.org/svn/wrpylib/trunk@1276
7aebc617-e5e2-0310-91dc-
80fb5f6d2477
from setuptools import setup
setup(name='wrpylib',
from setuptools import setup
setup(name='wrpylib',
description='Winterrodeln Python Library',
author='Philipp Spitzer',
author_email='philipp.spitzer@winterrodeln.org',
description='Winterrodeln Python Library',
author='Philipp Spitzer',
author_email='philipp.spitzer@winterrodeln.org',
# Paths
for path_type, coords in paths:
path_type = path_type.lower()
# Paths
for path_type, coords in paths:
path_type = path_type.lower()
- path_types = {u'6#ff014e9a': u'sledrun', u'6#ffe98401': u'walkup', u'6#ff7f7fff': u'alternative', u'3#ff000000': u'lift'}
+ path_types = {u'6#ff014e9a': u'sledrun', u'6#ffe98401': u'walkup', u'6#ff7f7fff': u'alternative', u'3#ff000000': u'lift', u'3#ffe1e100': u'recommendedcarroute'}
if not path_types.has_key(path_type): raise RuntimeError(u'Unknown path type {0}'.format(path_type))
path_type = path_types[path_type]
path = u", ".join(["{0} {1}".format(lon, lat) for lon, lat, symbol, title in coords])
path = u'LineString({0})'.format(path)
if not path_types.has_key(path_type): raise RuntimeError(u'Unknown path type {0}'.format(path_type))
path_type = path_types[path_type]
path = u", ".join(["{0} {1}".format(lon, lat) for lon, lat, symbol, title in coords])
path = u'LineString({0})'.format(path)
+ if path_type == u'recommendedcarroute': continue
sql = u'insert into wrmappathcache (path, page_id, type) values (GeomFromText(%s), %s, %s)'
connection.execute(sql, (path, sledrun_page.page_id, path_type))
except RuntimeError as e:
sql = u'insert into wrmappathcache (path, page_id, type) values (GeomFromText(%s), %s, %s)'
connection.execute(sql, (path, sledrun_page.page_id, path_type))
except RuntimeError as e: