Skip to content
This repository has been archived by the owner on Jan 22, 2021. It is now read-only.

Factorize tasks #24

Merged
merged 24 commits into from
May 26, 2018
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
24 commits
Select commit Hold shift + click to select a range
8bd6b8a
tasks: initialize a city.py module to factorize bordeaux and lyon pip…
delhomer May 7, 2018
703fed8
tasks: create a new common task to create a raw_station table
delhomer May 18, 2018
4c0d5f5
tasks: add a new task to normalize the station features
delhomer May 18, 2018
cd23781
tasks: create a new task that factorize station availability informat…
delhomer May 18, 2018
68e851a
tasks: create a task that transform bike availability data to csv format
delhomer May 18, 2018
35c935a
tasks : define bike availability data feature in config.ini fix #14
delhomer May 18, 2018
012e2d4
tasks : create a factorized task for adding bike availability data in…
delhomer May 18, 2018
e7c093d
tasks : create factorized tasks for transaction handling
delhomer May 18, 2018
f13faee
tasks: fix typos
delhomer May 18, 2018
c43e40f
tasks: simplify the references to city
delhomer May 18, 2018
ea901e0
tasks: factorize clustering and XGBoost training related tasks fix #5
delhomer May 18, 2018
f6d3836
tasks: delete obsolete task modules
delhomer May 18, 2018
40fff3b
tasks: factorize url when downloading bike availability data
delhomer May 18, 2018
bb58789
update the config.ini.sample file
garaud May 24, 2018
51904d3
tasks: some clean-up for the city.py module
garaud May 24, 2018
d426ade
tasks: the name for the clustring should come from the config file
garaud May 24, 2018
127fdcc
tasks: normalize the values for the 'timeseries.status' column
garaud May 24, 2018
e6e988b
tasks: set the station_id type to VARCHAR
garaud May 24, 2018
a3bfd08
tasks: rename some column names for the centroid table
garaud May 24, 2018
f6c67eb
tasks: name of some tables do not depend on the city name
garaud May 25, 2018
29db89b
update the configuration file example
garaud May 25, 2018
711c782
tasks: fix the SRID projection problem when normalizing the station t…
garaud May 25, 2018
6a5e837
tasks: extend the tablename definitions in config.ini for every impli…
delhomer May 25, 2018
ec1b881
tasks: select data for clustering only when the status is open
garaud May 26, 2018
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
44 changes: 37 additions & 7 deletions config.ini.sample
Original file line number Diff line number Diff line change
Expand Up @@ -5,19 +5,49 @@ host = localhost
port = 5432
# you can write it if necessary
password
# table names
stations = stations
raw_stations = raw_stations
timeseries = timeseries
daily_transaction = daily_transaction
clustering = cluster
centroids = centroid

[lyon]
schema = lyon
table = timeserie
daily_transaction = daily_transaction
clustering = clustered_stations
centroids = centroids
srid = 4326
typename = pvo_patrimoine_voirie.pvostationvelov
# station geoloc variable names
feature_id = idstation
feature_name = nom
feature_address = adresse1
feature_city = commune
feature_nb_stations = nbbornette
# station availability variables names
feature_avl_id = number
feature_timestamp = last_update
feature_avl_stands = available_bike_stands
feature_avl_bikes = available_bikes
feature_status = status

[bordeaux]
schema = bordeaux
table = timeserie
daily_transaction = daily_transaction
clustering = clustered_stations
centroids = centroids
srid = 2154
typename = TB_STVEL_P
# station geoloc variable names
feature_id = numstat
feature_name = nom
feature_address = adresse
feature_city = commune
feature_nb_stations = nbsuppor
# station availability variables names
feature_avl_id = ident
feature_timestamp = heure
feature_avl_stands = nbplaces
feature_avl_bikes = nbvelos
feature_status = etat

# API Key
key = QHUHHRI7HD
key = CHANGME
Loading