-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Loading status checks…
Merge pull request #254 from ibi-group/cdp-daily
CDP Daily entity upload to weekly folder
Showing
18 changed files
with
814 additions
and
190 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
388 changes: 293 additions & 95 deletions
388
src/main/java/org/opentripplanner/middleware/connecteddataplatform/ConnectedDataManager.java
Large diffs are not rendered by default.
Oops, something went wrong.
11 changes: 11 additions & 0 deletions
11
src/main/java/org/opentripplanner/middleware/connecteddataplatform/FolderGrouping.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,11 @@ | ||
package org.opentripplanner.middleware.connecteddataplatform; | ||
|
||
/** | ||
* Determines how folders should be organized. | ||
*/ | ||
public enum FolderGrouping { | ||
/** No grouping is taking place. */ | ||
NONE, | ||
/** Folders are organized weekly, from Monday to Sunday. */ | ||
WEEKLY_MONDAY_SUNDAY | ||
} |
43 changes: 43 additions & 0 deletions
43
src/main/java/org/opentripplanner/middleware/connecteddataplatform/ReportedEntities.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,43 @@ | ||
package org.opentripplanner.middleware.connecteddataplatform; | ||
|
||
import com.fasterxml.jackson.databind.JsonNode; | ||
import org.opentripplanner.middleware.persistence.Persistence; | ||
import org.opentripplanner.middleware.persistence.TypedPersistence; | ||
import org.opentripplanner.middleware.utils.ConfigUtils; | ||
|
||
import java.util.HashMap; | ||
import java.util.Map; | ||
|
||
/** | ||
* Singleton that holds configuration data about entities to report. | ||
* Note: Fields are PascalCased to reflect the casing of respective class names. | ||
*/ | ||
public class ReportedEntities { | ||
public static final Map<String, TypedPersistence<?>> persistenceMap = Map.of( | ||
"MonitoredTrip", Persistence.monitoredTrips, | ||
"OtpUser", Persistence.otpUsers, | ||
"TrackedJourney", Persistence.trackedJourneys, | ||
"TripRequest", Persistence.tripRequests, | ||
"TripSummary", Persistence.tripSummaries | ||
); | ||
|
||
public static final Map<String, String> entityMap = Map.copyOf( | ||
getEntityMap(ConfigUtils.getConfigProperty("CONNECTED_DATA_PLATFORM_REPORTED_ENTITIES")) | ||
); | ||
|
||
private ReportedEntities() {} | ||
|
||
static Map<String, String> getEntityMap(JsonNode node) { | ||
if (node == null || node.isEmpty()) return Map.of(); | ||
|
||
// Only include keys that are in persistenceMap. | ||
Map<String, String> map = new HashMap<>(); | ||
for (String key : persistenceMap.keySet()) { | ||
if (node.has(key)) { | ||
map.put(key, node.get(key).textValue()); | ||
} | ||
} | ||
|
||
return map; | ||
} | ||
} |
11 changes: 11 additions & 0 deletions
11
src/main/java/org/opentripplanner/middleware/connecteddataplatform/ReportingInterval.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,11 @@ | ||
package org.opentripplanner.middleware.connecteddataplatform; | ||
|
||
/** | ||
* Determines how often data should be reported. | ||
*/ | ||
public enum ReportingInterval { | ||
/** Data is reported hourly. */ | ||
HOURLY, | ||
/** Data is reported daily. */ | ||
DAILY | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
288 changes: 226 additions & 62 deletions
288
.../java/org/opentripplanner/middleware/connecteddataplatform/ConnectedDataPlatformTest.java
Large diffs are not rendered by default.
Oops, something went wrong.
27 changes: 27 additions & 0 deletions
27
src/test/java/org/opentripplanner/middleware/connecteddataplatform/ReportedEntitiesTest.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,27 @@ | ||
package org.opentripplanner.middleware.connecteddataplatform; | ||
|
||
import com.fasterxml.jackson.databind.node.JsonNodeFactory; | ||
import com.fasterxml.jackson.databind.node.ObjectNode; | ||
import org.junit.jupiter.api.Test; | ||
import org.opentripplanner.middleware.testutils.OtpMiddlewareTestEnvironment; | ||
|
||
import java.util.Map; | ||
|
||
import static org.junit.jupiter.api.Assertions.assertEquals; | ||
|
||
class ReportedEntitiesTest extends OtpMiddlewareTestEnvironment { | ||
@Test | ||
void canGetEntityMap() { | ||
ObjectNode node = JsonNodeFactory.instance.objectNode(); | ||
node.put("MonitoredTrip", "all"); | ||
node.put("TripRequest", "interval"); | ||
node.put("UnknownClass", "abc123"); | ||
|
||
Map<String, String> expected = Map.of( | ||
"MonitoredTrip", "all", | ||
"TripRequest", "interval" | ||
); | ||
|
||
assertEquals(expected, ReportedEntities.getEntityMap(node)); | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
2 changes: 1 addition & 1 deletion
2
...ctedDataPlatform/ConnectedDataPlatformTest/canCreateZipFileForTripSummaryWithError-0.json
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1 @@ | ||
"[{\"requestId\":\"783726\",\"fromPlace\":null,\"toPlace\":null,\"date\":\" 2021-09-22\",\"time\":\"15:54\",\"timeSelection\":\"DEPART_AT\",\"mode\":[\"WALK\",\"BUS\",\"RAIL\"],\"maxWalkDistance\":\"1027\",\"optimize\":\"QUICK\",\"itineraries\":[],\"error\":{\"id\":400,\"msg\":\"Trip is not possible. You might be trying to plan a trip outside the map data boundary.\",\"missing\":[\"from\"],\"noPath\":true}}]" | ||
"[{\"requestId\":\"783726\",\"fromPlace\":null,\"toPlace\":null,\"date\":\"2021-09-22\",\"time\":\"15:54\",\"timeSelection\":\"DEPART_AT\",\"mode\":[\"WALK\",\"BUS\",\"RAIL\"],\"maxWalkDistance\":null,\"optimize\":null,\"itineraries\":[],\"error\":{\"id\":400,\"msg\":\"Trip is not possible. You might be trying to plan a trip outside the map data boundary.\",\"missing\":[\"from\"],\"noPath\":true}}]" |
2 changes: 1 addition & 1 deletion
2
...leware/ConnectedDataPlatform/ConnectedDataPlatformTest/canCreateZipFileWithContent-0.json
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1 @@ | ||
"[{\"requestId\":\"783726\",\"fromPlace\":null,\"toPlace\":null,\"date\":\" 2021-09-22\",\"time\":\"15:54\",\"timeSelection\":\"DEPART_AT\",\"mode\":[\"WALK\",\"BUS\",\"RAIL\"],\"maxWalkDistance\":\"1027\",\"optimize\":\"QUICK\",\"itineraries\":[{\"tripSummaryId\":1,\"itineraryIndex\":1,\"duration\":1114,\"startTime\":1591717210000,\"endTime\":1591718324000,\"transfers\":0,\"transitTime\":240,\"waitingTime\":2,\"walkDistance\":1256.0514029764959,\"walkTime\":872,\"legs\":[{\"distance\":837.5169999999998,\"duration\":584.0,\"startTime\":1591717210000,\"endTime\":1591717794000,\"mode\":\"WALK\",\"transitLeg\":false,\"fromStop\":null,\"from\":null,\"toStop\":\"TriMet:9758\",\"to\":null,\"agencyId\":null,\"interlineWithPreviousLeg\":null,\"realTime\":null,\"routeId\":null,\"routeShortName\":null,\"routeLongName\":null,\"routeType\":null,\"tripBlockId\":null,\"tripId\":null,\"rentedVehicle\":false},{\"distance\":893.8869820964361,\"duration\":240.0,\"startTime\":1591717795000,\"endTime\":1591718035000,\"mode\":\"TRAM\",\"transitLeg\":true,\"fromStop\":\"TriMet:9758\",\"from\":{\"lon\":-122.689886,\"lat\":45.521321},\"toStop\":\"TriMet:8334\",\"to\":{\"lon\":-122.679145,\"lat\":45.518496},\"agencyId\":\"TRIMET\",\"interlineWithPreviousLeg\":false,\"realTime\":false,\"routeId\":\"TriMet:100\",\"routeShortName\":null,\"routeLongName\":\"MAX Blue Line\",\"routeType\":0,\"tripBlockId\":\"9004\",\"tripId\":\"TriMet:9942889\",\"rentedVehicle\":null},{\"distance\":418.19,\"duration\":288.0,\"startTime\":1591718036000,\"endTime\":1591718324000,\"mode\":\"WALK\",\"transitLeg\":false,\"fromStop\":\"TriMet:8334\",\"from\":null,\"toStop\":null,\"to\":null,\"agencyId\":null,\"interlineWithPreviousLeg\":null,\"realTime\":null,\"routeId\":null,\"routeShortName\":null,\"routeLongName\":null,\"routeType\":null,\"tripBlockId\":null,\"tripId\":null,\"rentedVehicle\":false}]},{\"tripSummaryId\":1,\"itineraryIndex\":2,\"duration\":1242,\"startTime\":1591717148000,\"endTime\":1591718390000,\"transfers\":0,\"transitTime\":420,\"waitingTime\":2,\"walkDistance\":1297.4104029783646,\"walkTime\":820,\"legs\":[{\"distance\":578.6750000000001,\"duration\":351.0,\"startTime\":1591717148000,\"endTime\":1591717499000,\"mode\":\"WALK\",\"transitLeg\":false,\"fromStop\":null,\"from\":null,\"toStop\":\"TriMet:10753\",\"to\":null,\"agencyId\":null,\"interlineWithPreviousLeg\":null,\"realTime\":null,\"routeId\":null,\"routeShortName\":null,\"routeLongName\":null,\"routeType\":null,\"tripBlockId\":null,\"tripId\":null,\"rentedVehicle\":false},{\"distance\":1103.6887432320718,\"duration\":420.0,\"startTime\":1591717500000,\"endTime\":1591717920000,\"mode\":\"TRAM\",\"transitLeg\":true,\"fromStop\":\"TriMet:10753\",\"from\":{\"lon\":-122.682374,\"lat\":45.528742},\"toStop\":\"TriMet:9633\",\"to\":{\"lon\":-122.683873,\"lat\":45.519059},\"agencyId\":\"PSC\",\"interlineWithPreviousLeg\":false,\"realTime\":false,\"routeId\":\"TriMet:195\",\"routeShortName\":null,\"routeLongName\":\"Portland Streetcar - B Loop\",\"routeType\":0,\"tripBlockId\":\"58\",\"tripId\":\"TriMet:9945177\",\"rentedVehicle\":null},{\"distance\":718.4660000000001,\"duration\":469.0,\"startTime\":1591717921000,\"endTime\":1591718390000,\"mode\":\"WALK\",\"transitLeg\":false,\"fromStop\":\"TriMet:9633\",\"from\":null,\"toStop\":null,\"to\":null,\"agencyId\":null,\"interlineWithPreviousLeg\":null,\"realTime\":null,\"routeId\":null,\"routeShortName\":null,\"routeLongName\":null,\"routeType\":null,\"tripBlockId\":null,\"tripId\":null,\"rentedVehicle\":false}]},{\"tripSummaryId\":1,\"itineraryIndex\":3,\"duration\":1036,\"startTime\":1591717825000,\"endTime\":1591718861000,\"transfers\":0,\"transitTime\":360,\"waitingTime\":2,\"walkDistance\":966.7338656666136,\"walkTime\":674,\"legs\":[{\"distance\":802.1549999999999,\"duration\":574.0,\"startTime\":1591717825000,\"endTime\":1591718399000,\"mode\":\"WALK\",\"transitLeg\":false,\"fromStop\":null,\"from\":null,\"toStop\":\"TriMet:6911\",\"to\":null,\"agencyId\":null,\"interlineWithPreviousLeg\":null,\"realTime\":null,\"routeId\":null,\"routeShortName\":null,\"routeLongName\":null,\"routeType\":null,\"tripBlockId\":null,\"tripId\":null,\"rentedVehicle\":false},{\"distance\":1286.9349137891197,\"duration\":360.0,\"startTime\":1591718400000,\"endTime\":1591718760000,\"mode\":\"BUS\",\"transitLeg\":true,\"fromStop\":\"TriMet:6911\",\"from\":{\"lon\":-122.690453,\"lat\":45.52188},\"toStop\":\"TriMet:5020\",\"to\":{\"lon\":-122.678854,\"lat\":45.516794},\"agencyId\":\"TRIMET\",\"interlineWithPreviousLeg\":false,\"realTime\":false,\"routeId\":\"TriMet:15\",\"routeShortName\":\"15\",\"routeLongName\":\"Belmont/NW 23rd\",\"routeType\":3,\"tripBlockId\":\"1505\",\"tripId\":\"TriMet:9932776\",\"rentedVehicle\":null},{\"distance\":164.377,\"duration\":100.0,\"startTime\":1591718761000,\"endTime\":1591718861000,\"mode\":\"WALK\",\"transitLeg\":false,\"fromStop\":\"TriMet:5020\",\"from\":null,\"toStop\":null,\"to\":null,\"agencyId\":null,\"interlineWithPreviousLeg\":null,\"realTime\":null,\"routeId\":null,\"routeShortName\":null,\"routeLongName\":null,\"routeType\":null,\"tripBlockId\":null,\"tripId\":null,\"rentedVehicle\":false}]}],\"error\":null}]" | ||
"[{\"requestId\":\"783726\",\"fromPlace\":null,\"toPlace\":null,\"date\":\"2021-09-22\",\"time\":\"15:54\",\"timeSelection\":\"DEPART_AT\",\"mode\":[\"WALK\",\"BUS\",\"RAIL\"],\"maxWalkDistance\":null,\"optimize\":null,\"itineraries\":[{\"tripSummaryId\":1,\"itineraryIndex\":1,\"duration\":1114,\"startTime\":1591717210000,\"endTime\":1591718324000,\"transfers\":0,\"transitTime\":240,\"waitingTime\":2,\"walkDistance\":1256.0514029764959,\"walkTime\":872,\"legs\":[{\"distance\":837.5169999999998,\"duration\":584.0,\"startTime\":1591717210000,\"endTime\":1591717794000,\"mode\":\"WALK\",\"transitLeg\":false,\"fromStop\":null,\"from\":null,\"toStop\":\"TriMet:9758\",\"to\":null,\"agencyId\":null,\"interlineWithPreviousLeg\":null,\"realTime\":null,\"routeId\":null,\"routeShortName\":null,\"routeLongName\":null,\"routeType\":null,\"tripBlockId\":null,\"tripId\":null,\"rentedVehicle\":false},{\"distance\":893.8869820964361,\"duration\":240.0,\"startTime\":1591717795000,\"endTime\":1591718035000,\"mode\":\"TRAM\",\"transitLeg\":true,\"fromStop\":\"TriMet:9758\",\"from\":{\"lon\":-122.689886,\"lat\":45.521321},\"toStop\":\"TriMet:8334\",\"to\":{\"lon\":-122.679145,\"lat\":45.518496},\"agencyId\":\"TRIMET\",\"interlineWithPreviousLeg\":false,\"realTime\":false,\"routeId\":\"TriMet:100\",\"routeShortName\":null,\"routeLongName\":\"MAX Blue Line\",\"routeType\":0,\"tripBlockId\":\"9004\",\"tripId\":\"TriMet:9942889\",\"rentedVehicle\":null},{\"distance\":418.19,\"duration\":288.0,\"startTime\":1591718036000,\"endTime\":1591718324000,\"mode\":\"WALK\",\"transitLeg\":false,\"fromStop\":\"TriMet:8334\",\"from\":null,\"toStop\":null,\"to\":null,\"agencyId\":null,\"interlineWithPreviousLeg\":null,\"realTime\":null,\"routeId\":null,\"routeShortName\":null,\"routeLongName\":null,\"routeType\":null,\"tripBlockId\":null,\"tripId\":null,\"rentedVehicle\":false}]},{\"tripSummaryId\":1,\"itineraryIndex\":2,\"duration\":1242,\"startTime\":1591717148000,\"endTime\":1591718390000,\"transfers\":0,\"transitTime\":420,\"waitingTime\":2,\"walkDistance\":1297.4104029783646,\"walkTime\":820,\"legs\":[{\"distance\":578.6750000000001,\"duration\":351.0,\"startTime\":1591717148000,\"endTime\":1591717499000,\"mode\":\"WALK\",\"transitLeg\":false,\"fromStop\":null,\"from\":null,\"toStop\":\"TriMet:10753\",\"to\":null,\"agencyId\":null,\"interlineWithPreviousLeg\":null,\"realTime\":null,\"routeId\":null,\"routeShortName\":null,\"routeLongName\":null,\"routeType\":null,\"tripBlockId\":null,\"tripId\":null,\"rentedVehicle\":false},{\"distance\":1103.6887432320718,\"duration\":420.0,\"startTime\":1591717500000,\"endTime\":1591717920000,\"mode\":\"TRAM\",\"transitLeg\":true,\"fromStop\":\"TriMet:10753\",\"from\":{\"lon\":-122.682374,\"lat\":45.528742},\"toStop\":\"TriMet:9633\",\"to\":{\"lon\":-122.683873,\"lat\":45.519059},\"agencyId\":\"PSC\",\"interlineWithPreviousLeg\":false,\"realTime\":false,\"routeId\":\"TriMet:195\",\"routeShortName\":null,\"routeLongName\":\"Portland Streetcar - B Loop\",\"routeType\":0,\"tripBlockId\":\"58\",\"tripId\":\"TriMet:9945177\",\"rentedVehicle\":null},{\"distance\":718.4660000000001,\"duration\":469.0,\"startTime\":1591717921000,\"endTime\":1591718390000,\"mode\":\"WALK\",\"transitLeg\":false,\"fromStop\":\"TriMet:9633\",\"from\":null,\"toStop\":null,\"to\":null,\"agencyId\":null,\"interlineWithPreviousLeg\":null,\"realTime\":null,\"routeId\":null,\"routeShortName\":null,\"routeLongName\":null,\"routeType\":null,\"tripBlockId\":null,\"tripId\":null,\"rentedVehicle\":false}]},{\"tripSummaryId\":1,\"itineraryIndex\":3,\"duration\":1036,\"startTime\":1591717825000,\"endTime\":1591718861000,\"transfers\":0,\"transitTime\":360,\"waitingTime\":2,\"walkDistance\":966.7338656666136,\"walkTime\":674,\"legs\":[{\"distance\":802.1549999999999,\"duration\":574.0,\"startTime\":1591717825000,\"endTime\":1591718399000,\"mode\":\"WALK\",\"transitLeg\":false,\"fromStop\":null,\"from\":null,\"toStop\":\"TriMet:6911\",\"to\":null,\"agencyId\":null,\"interlineWithPreviousLeg\":null,\"realTime\":null,\"routeId\":null,\"routeShortName\":null,\"routeLongName\":null,\"routeType\":null,\"tripBlockId\":null,\"tripId\":null,\"rentedVehicle\":false},{\"distance\":1286.9349137891197,\"duration\":360.0,\"startTime\":1591718400000,\"endTime\":1591718760000,\"mode\":\"BUS\",\"transitLeg\":true,\"fromStop\":\"TriMet:6911\",\"from\":{\"lon\":-122.690453,\"lat\":45.52188},\"toStop\":\"TriMet:5020\",\"to\":{\"lon\":-122.678854,\"lat\":45.516794},\"agencyId\":\"TRIMET\",\"interlineWithPreviousLeg\":false,\"realTime\":false,\"routeId\":\"TriMet:15\",\"routeShortName\":\"15\",\"routeLongName\":\"Belmont/NW 23rd\",\"routeType\":3,\"tripBlockId\":\"1505\",\"tripId\":\"TriMet:9932776\",\"rentedVehicle\":null},{\"distance\":164.377,\"duration\":100.0,\"startTime\":1591718761000,\"endTime\":1591718861000,\"mode\":\"WALK\",\"transitLeg\":false,\"fromStop\":\"TriMet:5020\",\"from\":null,\"toStop\":null,\"to\":null,\"agencyId\":null,\"interlineWithPreviousLeg\":null,\"realTime\":null,\"routeId\":null,\"routeShortName\":null,\"routeLongName\":null,\"routeType\":null,\"tripBlockId\":null,\"tripId\":null,\"rentedVehicle\":false}]}],\"error\":null}]" |
1 change: 1 addition & 0 deletions
1
...onnectedDataPlatform/ConnectedDataPlatformTest/canStreamTheCorrectNumberOfEntities-0.json
Large diffs are not rendered by default.
Oops, something went wrong.
1 change: 1 addition & 0 deletions
1
...tedDataPlatform/ConnectedDataPlatformTest/canStreamTheCorrectNumberOfEntitiesDaily-0.json
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
"[{\"id\":\"bdbac007-43d3-4295-ad97-65e5fad23898\",\"lastUpdated\":1726870100737,\"dateCreated\":1726729200000,\"userId\":\"e5ba1174-7905-4f17-b6ce-d0b77b6b9668\",\"batchId\":\"11111111\",\"fromPlace\":\"Airport, College Park, GA, USA :: 33.64070037704429,-84.44622866991179\",\"toPlace\":\"177 Gibson Street SE, Atlanta, GA, USA :: 33.748893261983575,-84.35611735540574\",\"otp2QueryParams\":{\"arriveBy\":false,\"date\":\"2021-09-22\",\"fromPlace\":\"Airport, College Park, GA, USA :: 33.64070037704429,-84.44622866991179\",\"modes\":[{\"mode\":\"WALK\",\"qualifier\":null},{\"mode\":\"BUS\",\"qualifier\":null},{\"mode\":\"RAIL\",\"qualifier\":null}],\"numItineraries\":0,\"time\":\"15:54\",\"toPlace\":\"177 Gibson Street SE, Atlanta, GA, USA :: 33.748893261983575,-84.35611735540574\",\"walkSpeed\":1.34,\"wheelchair\":false}},{\"id\":\"2930c014-536d-4bb4-a747-25bfa929a781\",\"lastUpdated\":1726870100716,\"dateCreated\":1726729200000,\"userId\":\"e5ba1174-7905-4f17-b6ce-d0b77b6b9668\",\"batchId\":\"99999999\",\"fromPlace\":\"Airport, College Park, GA, USA :: 33.64070037704429,-84.44622866991179\",\"toPlace\":\"177 Gibson Street SE, Atlanta, GA, USA :: 33.748893261983575,-84.35611735540574\",\"otp2QueryParams\":{\"arriveBy\":false,\"date\":\"2021-09-22\",\"fromPlace\":\"Airport, College Park, GA, USA :: 33.64070037704429,-84.44622866991179\",\"modes\":[{\"mode\":\"WALK\",\"qualifier\":null},{\"mode\":\"BUS\",\"qualifier\":null},{\"mode\":\"RAIL\",\"qualifier\":null}],\"numItineraries\":0,\"time\":\"15:54\",\"toPlace\":\"177 Gibson Street SE, Atlanta, GA, USA :: 33.748893261983575,-84.35611735540574\",\"walkSpeed\":1.34,\"wheelchair\":false}}]" |
1 change: 1 addition & 0 deletions
1
...tedDataPlatform/ConnectedDataPlatformTest/canStreamTheCorrectNumberOfEntitiesDaily-1.json
Large diffs are not rendered by default.
Oops, something went wrong.
1 change: 1 addition & 0 deletions
1
...ectedDataPlatform/ConnectedDataPlatformTest/canStreamTheCorrectNumberOfTripsHourly-0.json
Large diffs are not rendered by default.
Oops, something went wrong.