Difference between revisions of "Velorail"
Jump to navigation
Jump to search
(Created page with "{{OsProject |id=velorail |state=active |owner=WolfgangFahl |title=VeloRail |url=https://github.com/WolfgangFahl/velorail/ |version=0.0.1 |description=dynamic competence map |d...") |
|||
(2 intermediate revisions by the same user not shown) | |||
Line 6: | Line 6: | ||
|url=https://github.com/WolfgangFahl/velorail/ | |url=https://github.com/WolfgangFahl/velorail/ | ||
|version=0.0.1 | |version=0.0.1 | ||
− | |description= | + | |description=Multimodal bike and train route planning support |
|date=2025-02-01 | |date=2025-02-01 | ||
|since=2025-02-01 | |since=2025-02-01 | ||
}} | }} | ||
+ | = Demo = | ||
+ | https://velorail.bitplan.com | ||
+ | |||
+ | {{pip|velorail}} | ||
+ | = Usage = | ||
+ | == Command Line == | ||
+ | <source lang='bash' highlight='1'> | ||
+ | velorail -h | ||
+ | usage: velorail [-h] [-a] [--apache APACHE] [-c] [-d] | ||
+ | [--debugServer DEBUGSERVER] [--debugPort DEBUGPORT] | ||
+ | [--debugRemotePath DEBUGREMOTEPATH] | ||
+ | [--debugLocalPath DEBUGLOCALPATH] [-l] [-i INPUT] [-rol] | ||
+ | [--host HOST] [--port PORT] [-s] [-V] [-v] [-rp ROOT_PATH] | ||
+ | |||
+ | Multimodal bike and train route planning support | ||
+ | |||
+ | options: | ||
+ | -h, --help show this help message and exit | ||
+ | -a, --about show about info [default: False] | ||
+ | --apache APACHE create an apache configuration file for the given | ||
+ | domain | ||
+ | -c, --client start client [default: False] | ||
+ | -d, --debug show debug info [default: False] | ||
+ | --debugServer DEBUGSERVER | ||
+ | remote debug Server | ||
+ | --debugPort DEBUGPORT | ||
+ | remote debug Port | ||
+ | --debugRemotePath DEBUGREMOTEPATH | ||
+ | remote debug Server path mapping - remotePath - path | ||
+ | on debug server | ||
+ | --debugLocalPath DEBUGLOCALPATH | ||
+ | remote debug Server path mapping - localPath - path on | ||
+ | machine where python runs | ||
+ | -l, --local run with local file system access [default: False] | ||
+ | -i INPUT, --input INPUT | ||
+ | input file | ||
+ | -rol, --render_on_load | ||
+ | render on load [default: False] | ||
+ | --host HOST the host to serve / listen from [default: localhost] | ||
+ | --port PORT the port to serve from [default: 9876] | ||
+ | -s, --serve start webserver [default: False] | ||
+ | -V, --version show program's version number and exit | ||
+ | -v, --verbose show verbose output [default: False] | ||
+ | -rp ROOT_PATH, --root_path ROOT_PATH | ||
+ | path to pdf files [default: | ||
+ | /Users/wf/Library/Python/3.12/lib/python/site- | ||
+ | packages/velorail_examples] | ||
+ | |||
+ | </source> |
Latest revision as of 14:04, 1 February 2025
OsProject | |
---|---|
id | velorail |
state | active |
owner | WolfgangFahl |
title | VeloRail |
url | https://github.com/WolfgangFahl/velorail/ |
version | 0.0.1 |
description | Multimodal bike and train route planning support |
date | 2025-02-01 |
since | 2025-02-01 |
until |
Demo
Installation
pip install velorail
# alternatively if your pip is not a python3 pip
pip3 install velorail
# local install from source directory of velorail
pip install .
upgrade
pip install velorail -U
# alternatively if your pip is not a python3 pip
pip3 install velorail -U
Usage
Command Line
velorail -h
usage: velorail [-h] [-a] [--apache APACHE] [-c] [-d]
[--debugServer DEBUGSERVER] [--debugPort DEBUGPORT]
[--debugRemotePath DEBUGREMOTEPATH]
[--debugLocalPath DEBUGLOCALPATH] [-l] [-i INPUT] [-rol]
[--host HOST] [--port PORT] [-s] [-V] [-v] [-rp ROOT_PATH]
Multimodal bike and train route planning support
options:
-h, --help show this help message and exit
-a, --about show about info [default: False]
--apache APACHE create an apache configuration file for the given
domain
-c, --client start client [default: False]
-d, --debug show debug info [default: False]
--debugServer DEBUGSERVER
remote debug Server
--debugPort DEBUGPORT
remote debug Port
--debugRemotePath DEBUGREMOTEPATH
remote debug Server path mapping - remotePath - path
on debug server
--debugLocalPath DEBUGLOCALPATH
remote debug Server path mapping - localPath - path on
machine where python runs
-l, --local run with local file system access [default: False]
-i INPUT, --input INPUT
input file
-rol, --render_on_load
render on load [default: False]
--host HOST the host to serve / listen from [default: localhost]
--port PORT the port to serve from [default: 9876]
-s, --serve start webserver [default: False]
-V, --version show program's version number and exit
-v, --verbose show verbose output [default: False]
-rp ROOT_PATH, --root_path ROOT_PATH
path to pdf files [default:
/Users/wf/Library/Python/3.12/lib/python/site-
packages/velorail_examples]