Skip to content

Instantly share code, notes, and snippets.

@joedougherty
Created March 30, 2012 16:51
Show Gist options
  • Save joedougherty/2252807 to your computer and use it in GitHub Desktop.
Save joedougherty/2252807 to your computer and use it in GitHub Desktop.
SEPTA API sales_locations item Object Structure
/*
Example: to access a location's address, call item.sales_data.ADDRESS;
*/
item
distance: float
location_id: int // ex: 928044
location_lat: string // ex: "39.9562551"
location_lon: string: // ex: "-75.1941657"
location_name: string // ex: "Jimmy Newsstand"
location_type: string // ex: "sales_locations"
sales_data: Object
ACCOUNT: string // ex: "928044"
ADDRESS: string // ex: ""3601 Market St., NW Corner""
CITY: string // ex: "Phila."
HOURS: string // ex: "Mon-Fri 7:00a-7:00p"
NAME: string // ex: "Jimmy Newsstand"
STATE: string // ex: "PA"
ZIP: string // ex: "19104"
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment