Update Chapman region to wider campus bounds

https://claude.ai/code/session_0162emnCi1KxW5FkTNn2ZrvH
This commit is contained in:
Claude
2026-03-23 22:08:57 +00:00
parent fe649c81eb
commit 44d2da45d1
3 changed files with 6 additions and 6 deletions

View File

@@ -26,8 +26,8 @@ const supportedSystems: InterchangeSystemBuilderArguments[] = [
useSelfUpdatingEtas: true,
shuttleStopArrivalDegreeDelta: 0.001,
initialRegion: {
topLeft: { latitude: 33.7987, longitude: -117.8581 },
bottomRight: { latitude: 33.7887, longitude: -117.8481 },
topLeft: { latitude: 33.85733, longitude: -117.89553 },
bottomRight: { latitude: 33.73970, longitude: -117.81878 },
},
}
]

View File

@@ -60,8 +60,8 @@ describe("SystemResolvers", () => {
expect(response.body.singleResult.errors).toBeUndefined();
const initialRegion = (response.body.singleResult.data as any).system.initialRegion;
expect(initialRegion).toEqual({
topLeft: { latitude: 33.7987, longitude: -117.8581 },
bottomRight: { latitude: 33.7887, longitude: -117.8481 },
topLeft: { latitude: 33.85733, longitude: -117.89553 },
bottomRight: { latitude: 33.7397, longitude: -117.81878 },
});
});
});

View File

@@ -27,8 +27,8 @@ const systemInfoForTesting: InterchangeSystemBuilderArguments = {
useSelfUpdatingEtas: false,
shuttleStopArrivalDegreeDelta: 0.001,
initialRegion: {
topLeft: { latitude: 33.7987, longitude: -117.8581 },
bottomRight: { latitude: 33.7887, longitude: -117.8481 },
topLeft: { latitude: 33.85733, longitude: -117.89553 },
bottomRight: { latitude: 33.73970, longitude: -117.81878 },
},
};