Added server functions (untested)

This commit is contained in:
Antonio
2018-03-02 16:40:12 +01:00
parent 596189185f
commit c9d0f0447f
8 changed files with 299 additions and 5 deletions

View File

@@ -18,3 +18,9 @@ MAX_SPEEDS = {
PROFILE_CYCLING: 16.67, # In m/s, assuming 60km/h max speed
PROFILE_DRIVING: 41.67 # In m/s, assuming 140km/h max speed
}
TRANSPORT_MODE_TO_TOMTOM = {
'car': 'car',
'walk': 'pedestrian',
'bicycle': 'bicycle',
}

View File

@@ -10,7 +10,7 @@ from setuptools import setup, find_packages
setup(
name='cartodb_services',
version='0.16.7',
version='0.18.0',
description='CartoDB Services API Python Library',