I'm trying to calculate commute times from a single origin to several thousand destination points using transit+walking.
I've been able to run OpenTripPlanner and load in several GTFS feeds, an OSM PBF file and a CSV file containing my PointSet.
but this seems to returns some sort of histogram of travel times, rather than a mapping from IDs in the point set to commute times:
{"properties":{"id":"null_0"},"data":{"id":{"sums":[234,1121,2523,1888,3832,10176,13839,13389,16329,18928,19633,23667,25529,37283,59167,81405,100890,134792,139491,147317,186301,212207,241327,280253,306471,312696,345083,386077,410551,426195,447869,472240,480755,520750,570201,551417,525899,536021,513112,512516,522756,490613,455790,434465,406772,360792,312713,298938,275177,253516,224805,223056,235430,234518,219620,213099,198688,202796,216488,196341,178809,176058,165432,157056,147580,135662,131730,134015,128199,116719,104929,105217,111480,111020,105176,105432,99779,92279,88294,82698,68789,63101,69230,76361,66815,52101,44007,37910,29986,29686,32902,29155,26873,34449,35420,25998,20371,15473,11789,14802,21799,22393,15399,12533,13690,13764,11703,8954,11180,14040,11160,8965,6525,4828,5105,3830,2882,2949],"counts":[0,0,0,1,0,2,3,2,3,4,4,5,5,7,11,15,19,26,26,28,36,41,47,55,60,61,68,78,84,89,94,99,100,108,120,118,113,117,117,122,126,123,119,116,107,97,90,90,88,88,84,84,89,90,87,87,84,87,91,83,81,79,76,73,69,63,63,68,65,62,55,52,56,58,55,54,53,49,45,43,36,31,36,41,38,30,25,23,18,17,18,18,19,23,21,16,14,11,11,13,15,14,10,11,12,13,12,9,12,13,10,9,8,5,4,5,3,4]}}}
Is it possible to calculate one-to-many travel times for a pointset using the OTP HTTP API?