InnoZ / MAS

analysis and (potentially) development of a multi-agent simultation for carsharing
Apache License 2.0
0 stars 0 forks source link

post-analysis in postgresql #36

Closed 00Bock closed 7 years ago

00Bock commented 8 years ago

Things like:

ALTER TABLE duesseldorf.trips ADD COLUMN geom geometry; UPDATE duesseldorf.trips SET geom = ST_setSRID(ST_makePoint(from_x, from_y), 32632);

00Bock commented 8 years ago

ALTER TABLE "Rostock".trips ADD COLUMN geom geometry; UPDATE "Rostock".trips SET geom = ST_setSRID(ST_makeLine(ST_makePoint(from_x, from_y), ST_makePoint(to_x, to_y)), 32632);

wese-da commented 8 years ago

So one point of this issue is that tables containing the MATSim travel data should have a geometry column? That wouldn't be too difficult to implement.

00Bock commented 8 years ago

let's collect some useful post analysis first...

00Bock commented 7 years ago

ok. it's all happening in MAS_Interface now...